* {
    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: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 32px;
}

.nav-right a {
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #2c3e50;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #fafbfc;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #ffffff;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c3e50;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #2c3e50;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.intro-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
}

.intro-text {
    flex: 1.3;
}

.intro-text h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.intro-visual {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.approach-split {
    display: flex;
    background-color: #fafbfc;
}

.approach-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.approach-content {
    flex: 1;
    padding: 80px 60px;
}

.approach-content h2 {
    font-size: 42px;
    margin-bottom: 48px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-item {
    margin-bottom: 36px;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.approach-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.services-preview {
    padding: 100px 60px;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 64px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #fafbfc;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
    background-color: #e9ecef;
}

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin: 0 24px 16px;
}

.service-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 24px 24px;
}

.service-card .cta-secondary {
    margin: 0 24px 24px;
    display: block;
    text-align: center;
}

.form-split {
    display: flex;
    background-color: #2c3e50;
    color: #ffffff;
}

.form-info {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-info h2 {
    font-size: 40px;
    margin-bottom: 24px;
    font-weight: 700;
}

.form-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #e0e6ed;
    margin-bottom: 16px;
}

.form-container {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.form-container form {
    max-width: 480px;
}

.form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 15px;
}

.form-container input,
.form-container select {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 24px;
    border: 2px solid #e0e6ed;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-container input:focus,
.form-container select:focus {
    outline: none;
    border-color: #2c3e50;
}

.form-container button {
    width: 100%;
}

.footer-split {
    background-color: #1a252f;
    color: #e0e6ed;
    padding: 60px 60px 30px;
}

.footer-main {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #b0b8c1;
    margin-bottom: 12px;
}

.footer-column a {
    display: block;
    color: #b0b8c1;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #b0b8c1;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 13px;
    color: #8a94a0;
    font-style: italic;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e6ed;
    padding: 24px 40px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.cookie-content a {
    color: #2c3e50;
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 16px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #2c3e50;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1a252f;
}

.cookie-reject {
    background-color: #e9ecef;
    color: #495057;
}

.cookie-reject:hover {
    background-color: #dee2e6;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    background-color: #fafbfc;
}

.page-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #ffffff;
}

.page-hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    max-width: 520px;
}

.page-hero-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-split {
    display: flex;
    padding: 100px 0;
}

.story-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.story-content {
    flex: 1;
    padding: 60px;
    background-color: #fafbfc;
}

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

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.values-split {
    display: flex;
}

.values-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.value-item {
    margin-bottom: 36px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

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

.values-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

.values-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.expertise-section {
    padding: 100px 60px;
    background-color: #fafbfc;
}

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

.expertise-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-card {
    flex: 1;
    min-width: 260px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.expertise-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.expertise-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.cta-split {
    display: flex;
    background-color: #2c3e50;
    color: #ffffff;
}

.cta-content {
    flex: 1.5;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #e0e6ed;
}

.cta-action {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1a252f;
}

.cta-action .cta-primary {
    background-color: #ffffff;
    color: #2c3e50;
    font-size: 18px;
    padding: 18px 40px;
}

.cta-action .cta-primary:hover {
    background-color: #f8f9fa;
}

.page-header {
    padding: 80px 60px 60px;
    text-align: center;
    background-color: #fafbfc;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-header p {
    font-size: 19px;
    color: #4a5568;
}

.service-detail-split {
    display: flex;
    padding: 80px 0;
    border-bottom: 1px solid #e0e6ed;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
}

.service-detail-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.packages-section {
    padding: 100px 60px;
    background-color: #fafbfc;
}

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

.packages-section > p {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 64px;
}

.packages-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.package-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    border: 2px solid #e0e6ed;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card.featured {
    border-color: #2c3e50;
    box-shadow: 0 8px 24px rgba(44, 62, 80, 0.15);
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

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

.package-card > p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.6;
}

.package-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.package-savings {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 32px;
}

.contact-split {
    display: flex;
    min-height: 60vh;
}

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background-color: #fafbfc;
}

.contact-info h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-info > p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 48px;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h2 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-map {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    display: block;
}

.response-info {
    padding: 60px;
    background-color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.response-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

.response-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
    background-color: #fafbfc;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

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

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 8px;
}

.legal-content a {
    color: #2c3e50;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hero-split,
    .page-hero-split,
    .form-split,
    .approach-split,
    .story-split,
    .values-split,
    .service-detail-split,
    .cta-split,
    .contact-split {
        flex-direction: column;
    }

    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .page-hero-content {
        min-height: 50vh;
    }

    .hero-image,
    .page-hero-image,
    .approach-image,
    .story-image,
    .values-image,
    .service-detail-image,
    .contact-map {
        min-height: 400px;
    }

    .nav-right {
        gap: 20px;
    }

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

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

    .packages-grid {
        flex-direction: column;
        align-items: center;
    }

    .thanks-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .split-nav {
        padding: 16px 24px;
    }

    .hero-content,
    .page-hero-content,
    .form-info,
    .form-container,
    .approach-content,
    .story-content,
    .values-content,
    .service-detail-content,
    .cta-content,
    .cta-action {
        padding: 50px 32px;
    }

    .intro-asymmetric,
    .services-preview,
    .expertise-section,
    .packages-section {
        padding: 60px 32px;
    }

    .hero-content h1,
    .page-hero-content h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .intro-text h2,
    .approach-content h2,
    .story-content h2,
    .values-content h2,
    .services-preview h2,
    .expertise-section h2,
    .packages-section h2,
    .page-header h1 {
        font-size: 32px;
    }

    .service-detail-content h2,
    .cta-content h2 {
        font-size: 28px;
    }

    .nav-right {
        gap: 16px;
    }

    .nav-right a {
        font-size: 14px;
    }

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

    .services-grid,
    .expertise-grid {
        gap: 32px;
    }

    .footer-split {
        padding: 40px 32px 24px;
    }

    .legal-content {
        padding: 60px 32px;
    }
}