* {
    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: #1a202c;
    background-color: #ffffff;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    text-decoration: none;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-label {
    font-size: 0.75rem;
    color: #718096;
    padding: 0.25rem 0.75rem;
    background-color: #f7fafc;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #4299e1;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-split-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 4rem;
    background-color: #f7fafc;
}

.hero-split-left h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.hero-split-left p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.hero-split-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #2d3748;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.cta-primary:hover {
    background-color: #1a202c;
}

.intro-asymmetric {
    display: flex;
    gap: 3rem;
    padding: 5rem 4rem;
    align-items: center;
}

.intro-content-narrow {
    flex: 1.3;
}

.intro-content-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.intro-content-narrow p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
}

.intro-visual {
    flex: 0.7;
    overflow: hidden;
    border-radius: 8px;
}

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

.insight-block {
    display: flex;
    min-height: 500px;
}

.insight-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem;
}

.insight-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.insight-text p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.insight-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background-color: #2d3748;
}

.testimonial-inline {
    border-left: 4px solid #4299e1;
    padding-left: 2rem;
}

.testimonial-inline p {
    font-size: 1.125rem;
    color: #ffffff;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    color: #cbd5e0;
    font-style: normal;
    font-size: 0.95rem;
}

.services-split {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.services-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-header-centered h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.services-header-centered p {
    font-size: 1.125rem;
    color: #4a5568;
}

.service-row-split {
    display: flex;
    margin-bottom: 3rem;
    min-height: 400px;
}

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

.service-image {
    flex: 1;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    background-color: #f7fafc;
}

.service-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-details p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.875rem 1.75rem;
    background-color: #4299e1;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #3182ce;
}

.trust-building-split {
    display: flex;
}

.trust-left {
    flex: 1;
    padding: 4rem;
    background-color: #2d3748;
    color: #ffffff;
}

.trust-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.trust-left p {
    font-size: 1rem;
    line-height: 1.8;
}

.trust-left a {
    color: #90cdf4;
}

.trust-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
}

.stat-label {
    font-size: 1rem;
    color: #4a5568;
}

.form-section-split {
    display: flex;
    min-height: 600px;
}

.form-left {
    flex: 1;
    overflow: hidden;
}

.form-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.form-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #f7fafc;
}

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

.form-right p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2d3748;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #1a202c;
}

.disclaimer-section {
    padding: 3rem 4rem;
    background-color: #fffaf0;
    border-top: 2px solid #f6ad55;
}

.disclaimer-content p {
    font-size: 0.9rem;
    color: #744210;
    line-height: 1.7;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-split {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 3rem 4rem 1.5rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #2d3748;
}

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

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

.footer-col p,
.footer-col a {
    font-size: 0.9rem;
    color: #cbd5e0;
    text-decoration: none;
    line-height: 1.6;
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #718096;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #90cdf4;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-cookie {
    background-color: #4299e1;
    color: #ffffff;
}

.btn-cookie:hover {
    background-color: #3182ce;
}

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

.btn-cookie-alt:hover {
    background-color: #4a5568;
}

.page-hero-split {
    padding: 5rem 4rem 3rem;
    background-color: #f7fafc;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.page-hero-content p {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
}

.about-story-split {
    display: flex;
    gap: 3rem;
    padding: 5rem 4rem;
}

.about-left {
    flex: 1;
}

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

.about-left p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-right {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.about-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-split-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 3rem;
    padding: 5rem 4rem;
    background-color: #f7fafc;
}

.values-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

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

.values-content {
    flex: 1;
}

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

.value-item {
    margin-bottom: 2rem;
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

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

.team-approach-split {
    display: flex;
    gap: 3rem;
    padding: 5rem 4rem;
}

.team-left {
    flex: 1.2;
}

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

.team-left p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-right {
    flex: 0.8;
    display: flex;
    align-items: center;
}

.testimonial-about {
    border-left: 4px solid #4299e1;
    padding-left: 2rem;
}

.testimonial-about p {
    font-size: 1.125rem;
    color: #2d3748;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial-about cite {
    color: #718096;
    font-style: normal;
    font-size: 0.95rem;
}

.impact-section {
    padding: 5rem 4rem;
    background-color: #2d3748;
    color: #ffffff;
}

.impact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.impact-header h2 {
    font-size: 2.25rem;
}

.impact-stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4299e1;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1rem;
    color: #cbd5e0;
}

.cta-about-split {
    display: flex;
    min-height: 400px;
}

.cta-about-left {
    flex: 1;
    overflow: hidden;
}

.cta-about-left img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-about-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background-color: #f7fafc;
}

.cta-about-right h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.cta-about-right p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s;
    display: inline-block;
}

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

.btn-primary:hover {
    background-color: #1a202c;
}

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

.btn-secondary:hover {
    background-color: #2d3748;
    color: #ffffff;
}

.services-detail-split {
    padding: 3rem 4rem 5rem;
}

.service-detail-row {
    display: flex;
    margin-bottom: 4rem;
    min-height: 450px;
}

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

.service-detail-left {
    flex: 1;
    overflow: hidden;
}

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

.service-detail-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    background-color: #f7fafc;
}

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

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

.service-detail-right h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.service-detail-right ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-right li {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.service-price-detail {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.services-cta-split {
    padding: 4rem;
    background-color: #2d3748;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.services-cta-content p {
    font-size: 1.125rem;
    color: #cbd5e0;
    margin-bottom: 2rem;
}

.btn-primary-large {
    padding: 1.125rem 2.5rem;
    background-color: #4299e1;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.2s;
    display: inline-block;
    font-size: 1.125rem;
}

.btn-primary-large:hover {
    background-color: #3182ce;
}

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-info-left {
    flex: 1;
    padding: 4rem;
    background-color: #f7fafc;
}

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

.contact-block {
    margin-bottom: 2rem;
}

.contact-block h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

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

.contact-visual-right {
    flex: 1;
    overflow: hidden;
}

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

.contact-approach {
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.approach-content h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
}

.approach-steps {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-step {
    flex: 1;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #4299e1;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.approach-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

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

.contact-map-placeholder {
    min-height: 300px;
    background-color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.map-text-overlay p {
    font-size: 1.125rem;
    color: #4a5568;
    text-align: center;
}

.thanks-hero-centered {
    padding: 5rem 4rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7fafc;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: #48bb78;
    color: #ffffff;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-selected {
    font-size: 1rem;
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 2rem;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
}

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

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

.step-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #4299e1;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    flex-shrink: 0;
}

.next-step p {
    flex: 1;
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
    padding-top: 0.5rem;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.legal-page {
    padding: 3rem 4rem 5rem;
    background-color: #ffffff;
}

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

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

.legal-updated {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 2rem;
}

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

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

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

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #4299e1;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-split,
    .intro-asymmetric,
    .insight-block,
    .service-row-split,
    .trust-building-split,
    .form-section-split,
    .about-story-split,
    .values-split-reverse,
    .team-approach-split,
    .cta-about-split,
    .service-detail-row,
    .contact-split {
        flex-direction: column;
    }

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

    .footer-main {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

    .approach-steps {
        flex-direction: column;
    }

    .impact-stats-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .hero-split-left h1,
    .page-hero-content h1,
    .thanks-content h1 {
        font-size: 1.75rem;
    }

    .services-header-centered h2,
    .impact-header h2 {
        font-size: 1.75rem;
    }
}