* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-medium {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-magazine {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 0.65rem 1.5rem;
    background-color: #4a90e2;
    color: #ffffff;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-cookie:hover {
    background-color: #357abd;
}

.btn-cookie.btn-secondary {
    background-color: transparent;
    border: 1px solid #ffffff;
}

.btn-cookie.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.brand-area {
    flex-shrink: 0;
}

.brand-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
}

.nav-primary {
    flex: 1;
}

.nav-primary ul {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
}

.nav-primary a {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-primary a:hover {
    color: #1a202c;
}

.ad-disclosure {
    flex-shrink: 0;
    background-color: #fff5f5;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid #feb2b2;
}

.ad-label {
    font-size: 0.85rem;
    color: #c53030;
    font-weight: 500;
}

.hero-editorial {
    margin-bottom: 4rem;
}

.hero-image-wrap {
    position: relative;
    height: 600px;
    background-color: #2d3748;
    overflow: hidden;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e2e8f0;
    max-width: 700px;
    margin: 0 auto;
}

.intro-section {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.magazine-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.col-wide {
    flex: 2;
}

.col-narrow {
    flex: 1;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    line-height: 1.2;
}

.intro-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.insight-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 120px;
}

.insight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    color: #1a202c;
}

.insight-list li {
    font-size: 1rem;
    color: #4a5568;
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.insight-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 600;
}

.services-preview {
    padding: 5rem 0;
    background-color: #ffffff;
}

.section-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #1a202c;
}

.services-grid-magazine {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-card-featured {
    grid-column: 1 / -1;
    display: flex;
    gap: 2.5rem;
    background-color: #f7fafc;
    border-radius: 8px;
    overflow: hidden;
}

.service-image {
    flex: 1.2;
    background-color: #e2e8f0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    color: #1a202c;
}

.service-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.btn-select {
    padding: 0.85rem 2rem;
    background-color: #4a90e2;
    color: #ffffff;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.2s, transform 0.1s;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: #357abd;
    transform: translateY(-1px);
}

.btn-select:active {
    transform: translateY(0);
}

.service-card-standard {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
    transition: box-shadow 0.3s;
}

.service-card-standard:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-image-small {
    margin-bottom: 1.5rem;
    background-color: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    height: 220px;
}

.service-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-standard h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-card-standard p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 0.75rem;
}

.value-proposition {
    padding: 5rem 0;
    background-color: #edf2f7;
}

.magazine-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.col-content {
    flex: 1.5;
}

.col-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-proposition h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.value-proposition p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: #4a5568;
}

.stat-block {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #718096;
}

.testimonials-editorial {
    padding: 5rem 0;
    background-color: #ffffff;
}

.testimonials-editorial h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.testimonial-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f7fafc;
    border-left: 4px solid #4a90e2;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 1.15rem;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

.form-section {
    padding: 5rem 0;
    background-color: #edf2f7;
}

.form-wrapper {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.form-intro {
    font-size: 1.05rem;
    color: #718096;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.form-group input {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #4a90e2;
}

.form-group input[readonly] {
    background-color: #f7fafc;
    color: #2d3748;
    font-weight: 600;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #2b6cb0;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s, transform 0.1s;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #2c5282;
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: translateY(0);
}

.disclaimer-section {
    padding: 3rem 0;
    background-color: #fffaf0;
    border-top: 1px solid #fbd38d;
    border-bottom: 1px solid #fbd38d;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #744210;
    line-height: 1.7;
}

.footer-main {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    font-size: 0.95rem;
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col a {
    font-size: 0.95rem;
    color: #cbd5e0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #a0aec0;
}

.page-header {
    padding: 4rem 0 3rem;
    background-color: #f7fafc;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #718096;
}

.about-content {
    padding: 5rem 0;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    color: #1a202c;
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.team-image {
    position: sticky;
    top: 120px;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.methodology-section {
    padding: 5rem 0;
    background-color: #f7fafc;
}

.methodology-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #1a202c;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.process-step {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #4a90e2;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.process-step p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

.values-section {
    padding: 5rem 0;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #1a202c;
}

.values-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.value-item {
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.value-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 0;
    background-color: #2b6cb0;
    text-align: center;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #e6f4ff;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-primary {
    background-color: #ffffff;
    color: #2b6cb0;
}

.btn-primary:hover {
    background-color: #f7fafc;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.services-detailed {
    padding: 3rem 0 5rem;
}

.service-detail-card {
    margin-bottom: 4rem;
}

.service-detail-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-detail-grid.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #e2e8f0;
    height: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.contact-section {
    padding: 3rem 0 5rem;
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
    font-weight: 600;
}

.info-block p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    position: sticky;
    top: 120px;
}

.directions-section {
    padding: 4rem 0;
    background-color: #f7fafc;
}

.directions-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.directions-section p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
}

.thanks-section {
    padding: 5rem 0;
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.thanks-message {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 3rem;
}

.thanks-details {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: left;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a202c;
}

.next-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.next-step .step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #4a90e2;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #1a202c;
}

.step-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-service {
    margin-bottom: 2.5rem;
}

.selected-service-display {
    font-size: 1.15rem;
    color: #2d3748;
    padding: 1.5rem;
    background-color: #edf2f7;
    border-radius: 6px;
    display: inline-block;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    padding: 3rem 0 5rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.updated-date {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: #1a202c;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.legal-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-content a {
    color: #4a90e2;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #2b6cb0;
}

.legal-content strong {
    color: #2d3748;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .services-grid-magazine {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .header-grid {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-primary ul {
        gap: 1.5rem;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .magazine-layout,
    .magazine-split,
    .service-card-featured,
    .service-detail-grid,
    .contact-layout {
        flex-direction: column;
    }

    .col-wide,
    .col-narrow,
    .col-content,
    .col-stats {
        flex: 1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-layout {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-image-wrap {
        height: 400px;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}