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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
}

.ad-disclosure {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.nav-floating {
    position: fixed;
    top: 40px;
    right: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0066cc;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    padding: 100px 60px 60px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    align-items: center;
}

.hero-content-left {
    flex: 0 0 45%;
    padding-right: 60px;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-content-left p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #444;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: -50px;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e9ecef;
}

.insight-overlap {
    display: flex;
    padding: 120px 60px;
    align-items: flex-start;
    gap: 80px;
    background-color: #fff;
    position: relative;
}

.insight-card {
    flex: 0 0 50%;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.insight-card h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.insight-card p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.7;
}

.insight-img {
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    margin-top: 60px;
    background-color: #e9ecef;
}

.vision-split {
    display: flex;
    padding: 100px 60px;
    background-color: #1a1a1a;
    gap: 70px;
    align-items: center;
}

.vision-img {
    flex: 0 0 45%;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #333;
}

.vision-text {
    flex: 1;
    color: #fff;
}

.vision-text h2 {
    font-size: 40px;
    margin-bottom: 28px;
    font-weight: 700;
}

.vision-text p {
    font-size: 17px;
    margin-bottom: 22px;
    line-height: 1.7;
    color: #e0e0e0;
}

.services-asymmetric {
    padding: 120px 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.services-header-offset {
    max-width: 600px;
    margin-bottom: 70px;
    margin-left: 100px;
}

.services-header-offset h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    color: #1a1a1a;
}

.services-header-offset p {
    font-size: 18px;
    color: #555;
}

.service-cards-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card-large {
    flex: 0 0 calc(55% - 15px);
}

.card-medium {
    flex: 0 0 calc(42% - 15px);
}

.card-small {
    flex: 0 0 calc(45% - 15px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    margin: 0 25px 20px 25px;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 800;
    color: #0066cc;
    margin: 0 25px 20px 25px;
}

.btn-select-service {
    background-color: #0066cc;
    color: #fff;
    border: none;
    padding: 14px 30px;
    margin: 0 25px 25px 25px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: #0052a3;
    transform: scale(1.02);
}

.trust-layer {
    padding: 100px 60px;
    background-color: #f0f4f8;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.trust-content {
    flex: 0 0 50%;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

.testimonial-inline {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0066cc;
}

.testimonial-inline p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.6;
}

.testimonial-inline cite {
    font-size: 14px;
    color: #666;
    font-style: normal;
}

.form-section-diagonal {
    padding: 120px 60px;
    background: linear-gradient(165deg, #0066cc 0%, #004c99 100%);
    position: relative;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-container p {
    font-size: 16px;
    margin-bottom: 35px;
    color: #555;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    background-color: #0066cc;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.disclaimer-section {
    padding: 60px 60px;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 60px 40px 60px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-left {
    flex: 1;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-left p {
    font-size: 14px;
    color: #b0b0b0;
}

.footer-center {
    flex: 1;
}

.footer-center h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-center ul {
    list-style: none;
}

.footer-center ul li {
    margin-bottom: 10px;
}

.footer-center ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-center ul li a:hover {
    color: #fff;
}

.footer-right {
    flex: 1;
}

.footer-right h4 {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-right p {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px 60px;
    display: none;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-accept {
    background-color: #0066cc;
    color: #fff;
}

.btn-accept:hover {
    background-color: #0052a3;
    transform: scale(1.05);
}

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-reject:hover {
    background-color: #333;
    transform: scale(1.05);
}

.about-hero {
    padding: 150px 60px 80px 60px;
    background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
    color: #fff;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 80px 60px;
    background-color: #fff;
}

.story-block {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-block img {
    flex: 0 0 48%;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e9ecef;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #444;
}

.values-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.services-hero {
    padding: 150px 60px 80px 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    text-align: center;
}

.services-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.services-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 60px;
    background-color: #fff;
}

.service-detail {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

.service-detail img {
    flex: 0 0 45%;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.7;
    color: #444;
}

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.price-display {
    font-size: 32px;
    font-weight: 800;
    color: #0066cc;
    margin-top: 20px;
}

.cta-services {
    padding: 80px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-services h2 {
    font-size: 38px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
}

.cta-btn {
    display: inline-block;
    background-color: #0066cc;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.contact-hero {
    padding: 150px 60px 80px 60px;
    background: linear-gradient(135deg, #004c99 0%, #003366 100%);
    color: #fff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-layout {
    padding: 80px 60px;
    background-color: #fff;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-block {
    flex: 1;
}

.contact-block h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.detail-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #0066cc;
}

.detail-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.contact-visual {
    flex: 0 0 45%;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e9ecef;
}

.contact-approach {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.contact-approach h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

.approach-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.thanks-hero {
    padding: 150px 60px 80px 60px;
    background: linear-gradient(135deg, #00b894 0%, #00a383 100%);
    color: #fff;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.selected-service-display {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 16px;
}

.btn-back {
    display: inline-block;
    background-color: #fff;
    color: #00b894;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.thanks-hero img {
    flex: 0 0 40%;
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: rgba(255, 255, 255, 0.2);
}

.next-steps {
    padding: 80px 60px;
    background-color: #fff;
}

.next-steps h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

.steps-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 700;
    color: #00b894;
}

.step-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 100px 60px;
    background-color: #fff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 800;
    color: #1a1a1a;
}

.legal-page .updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #333;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 1024px) {
    .hero-offset,
    .vision-split,
    .trust-layer,
    .contact-info-layout,
    .thanks-hero {
        flex-direction: column;
    }

    .hero-content-left,
    .vision-text,
    .trust-content,
    .thanks-content {
        flex: 1;
        padding-right: 0;
    }

    .service-cards-irregular {
        flex-direction: column;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 0 100%;
    }

    .nav-floating {
        top: 20px;
        right: 20px;
        padding: 15px 20px;
    }

    .footer-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .story-block,
    .service-detail {
        flex-direction: column;
    }

    .story-block.reverse,
    .service-detail.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-content-left h1 {
        font-size: 38px;
    }

    .services-header-offset {
        margin-left: 0;
    }

    .services-header-offset h2 {
        font-size: 34px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}