/* Reset and Base Styles */
* {
    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.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

/* Container Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Navigation - Split Screen Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-right a {
    color: #4b5563;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #1a1a1a;
}

/* Hero Split Screen */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 60px 80px 60px 60px;
}

.hero-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-intro {
    font-size: 24px;
    color: #2563eb;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-left p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

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

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    background: #f3f4f6;
    color: #1a1a1a;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #e5e7eb;
}

/* Section Styles */
.section-intro {
    padding: 100px 20px;
    background: #f9fafb;
}

.section-intro h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
}

.section-intro p {
    font-size: 20px;
    color: #4b5563;
    line-height: 1.7;
}

/* Split Content Sections */
.split-content {
    display: flex;
    align-items: center;
    padding: 80px 40px;
}

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

.split-text {
    flex: 1;
    padding: 0 60px;
}

.split-text h2,
.split-text h3 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.split-text h3 {
    font-size: 32px;
}

.split-text p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.7;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    border-radius: 12px;
}

.link-arrow {
    color: #2563eb;
    font-weight: 600;
    font-size: 17px;
    display: inline-block;
    margin-top: 15px;
}

.link-arrow:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Services Grid */
.services-grid {
    padding: 100px 20px;
    background: #ffffff;
}

.services-grid h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 60px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.service-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 40px;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    max-width: 380px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2563eb;
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin: 25px 0;
}

.btn-service {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: #1e40af;
}

/* Testimonial */
.testimonial-inline {
    padding: 80px 20px;
    background: #1f2937;
    color: #ffffff;
}

.testimonial-inline blockquote {
    font-size: 28px;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #9ca3af;
    font-style: normal;
}

/* Insight Section */
.insight-section {
    padding: 100px 20px;
    background: #f9fafb;
}

.insight-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.insight-item {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 280px;
}

.insight-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.insight-item p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.6;
}

/* Form Section */
.form-section {
    padding: 100px 20px;
    background: #ffffff;
}

.form-section h2 {
    font-size: 42px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.form-section > div > p {
    text-align: center;
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 50px;
}

.consultation-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.btn-submit {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
}

.sticky-btn {
    background: #dc2626;
    color: #ffffff;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #b91c1c;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 25px 30px;
    z-index: 1000;
    display: none;
    border-top: 3px solid #2563eb;
}

.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: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 15px;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-cookie {
    background: #2563eb;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #1e40af;
}

.btn-cookie-reject {
    background: #4b5563;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background: #374151;
}

/* Footer */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #9ca3af;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 14px;
}

/* Page Header */
.page-header {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff;
    text-align: center;
}

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

.lead {
    font-size: 22px;
    color: #dbeafe;
}

/* Timeline */
.timeline-section {
    padding: 100px 20px;
    background: #ffffff;
}

.timeline-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    gap: 40px;
}

.year {
    font-size: 32px;
    font-weight: 800;
    color: #2563eb;
    min-width: 100px;
}

.timeline-item .content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.timeline-item .content p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.6;
}

/* Team Philosophy */
.team-philosophy {
    padding: 100px 20px;
    background: #f9fafb;
}

.team-philosophy h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.large-text {
    font-size: 24px;
    color: #2563eb;
    margin-bottom: 25px;
    font-weight: 600;
}

.team-philosophy p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Stats Section */
.stats-section {
    padding: 100px 20px;
    background: #1f2937;
    color: #ffffff;
}

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

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
}

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

.cta-section p {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 35px;
}

/* Services Detailed */
.services-detailed {
    padding: 60px 20px;
}

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

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

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

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-intro {
    font-size: 20px;
    color: #2563eb;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-detail-content p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-includes {
    margin: 30px 0;
}

.service-includes h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #4b5563;
}

.service-includes ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 18px;
}

.service-price-box {
    margin-top: 30px;
    padding: 30px;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
}

.price-large {
    font-size: 36px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 20px;
}

.service-detail-image {
    flex: 1;
    max-width: 500px;
}

.service-detail-image img {
    border-radius: 12px;
    width: 100%;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.6;
}

.contact-item {
    margin: 35px 0;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.6;
}

.contact-item .note {
    font-size: 14px;
    color: #2563eb;
    margin-top: 5px;
    font-style: italic;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    border-radius: 12px;
    width: 100%;
}

/* Approach Section */
.approach-section {
    padding: 100px 20px;
    background: #f9fafb;
}

.approach-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

.approach-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-content p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.6;
}

/* Confidentiality Section */
.confidentiality-section {
    padding: 80px 20px;
    background: #1f2937;
    color: #ffffff;
}

.confidentiality-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.confidentiality-section p {
    font-size: 18px;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-section {
    padding: 120px 20px;
    text-align: center;
}

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

.thanks-info {
    margin: 40px 0;
    padding: 30px;
    background: #ecfdf5;
    border-radius: 12px;
    border: 2px solid #10b981;
}

.thanks-info p {
    font-size: 18px;
    color: #065f46;
    margin-bottom: 10px;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps ol li {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 15px;
    line-height: 1.6;
}

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

.confidence-note {
    padding: 40px 20px;
    background: #f9fafb;
}

.confidence-note p {
    text-align: center;
    font-size: 16px;
    color: #4b5563;
}

/* Legal Pages */
.legal-page {
    padding: 80px 20px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.last-updated {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 40px;
}

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

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

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

.legal-page ul,
.legal-page ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page ul li,
.legal-page ol li {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 10px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table thead {
    background: #f9fafb;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e5e7eb;
    font-size: 15px;
}

.cookies-table th {
    font-weight: 700;
    color: #1a1a1a;
}

.cookies-table td {
    color: #4b5563;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-right {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 40px 20px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .hero-intro {
        font-size: 20px;
    }

    .split-content {
        flex-direction: column;
        padding: 60px 20px;
    }

    .split-content.reverse {
        flex-direction: column;
    }

    .split-text {
        padding: 20px 0;
    }

    .split-text h2,
    .split-text h3 {
        font-size: 28px;
    }

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

    .service-card {
        max-width: 100%;
    }

    .insight-grid {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-btn {
        padding: 14px 25px;
        font-size: 14px;
    }

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

    .timeline-item {
        flex-direction: column;
        gap: 20px;
    }

    .stats-grid {
        flex-direction: column;
    }

    .service-detail {
        flex-direction: column;
        gap: 30px;
    }

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

    .service-detail-image {
        max-width: 100%;
    }

    .contact-grid {
        flex-direction: column;
    }

    .approach-steps .step {
        flex-direction: column;
        gap: 15px;
    }

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

    .page-header h1 {
        font-size: 36px;
    }

    .lead {
        font-size: 18px;
    }
}