/* Reset and Base Styles */
* {
    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: #2d3748;
    background: #ffffff;
}

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

a {
    color: #3182ce;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2c5aa0;
}

/* 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 Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
}

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

.nav-right a {
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: #3182ce;
}

/* Hero Split Screen */
.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background: #f7fafc;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #4a5568;
}

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

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

/* Buttons */
.btn-hero,
.btn-large,
.btn-primary,
.btn-secondary,
.btn-submit,
.btn-select,
.btn-inline,
.btn-sticky {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-hero,
.btn-large,
.btn-primary,
.btn-submit,
.btn-select,
.btn-sticky {
    background: #3182ce;
    color: #ffffff;
}

.btn-hero:hover,
.btn-large:hover,
.btn-primary:hover,
.btn-submit:hover,
.btn-select:hover,
.btn-sticky:hover {
    background: #2c5aa0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

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

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

.btn-inline {
    background: transparent;
    color: #3182ce;
    padding: 8px 0;
    font-weight: 600;
}

.btn-inline:hover {
    color: #2c5aa0;
}

/* Intro Story Section */
.intro-story {
    padding: 80px 20px;
    background: #ffffff;
}

.intro-story h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.intro-story p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

/* Split Feature Sections */
.split-feature,
.split-reverse {
    display: flex;
    align-items: center;
    min-height: 500px;
}

.split-feature {
    background: #ffffff;
}

.split-reverse {
    background: #f7fafc;
    flex-direction: row-reverse;
}

.feature-image,
.feature-text {
    flex: 1;
}

.feature-image {
    overflow: hidden;
}

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

.feature-text {
    padding: 60px;
}

.feature-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.feature-text p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a5568;
}

/* Trust Section */
.trust-section {
    padding: 80px 20px;
    background: #edf2f7;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a202c;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

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

.trust-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.trust-card p {
    font-size: 16px;
    color: #4a5568;
}

/* Services Overview */
.services-overview {
    padding: 80px 20px;
    background: #ffffff;
}

.services-overview h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a202c;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    padding: 32px;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #3182ce;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(49, 130, 206, 0.15);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 20px;
}

.service-price span {
    font-size: 16px;
    font-weight: 400;
    color: #718096;
}

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

.testimonial-inline blockquote {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-inline cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.9;
}

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

.form-wrapper-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.form-intro p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #4a5568;
}

.checklist {
    list-style: none;
    margin-bottom: 24px;
}

.checklist li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #2d3748;
}

.form-container {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    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: #3182ce;
}

.btn-submit {
    width: 100%;
}

/* Final CTA */
.final-cta {
    padding: 80px 20px;
    background: #1a202c;
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #2d3748;
    color: #e2e8f0;
    padding: 60px 20px 20px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

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

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

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

.footer-col a {
    color: #cbd5e0;
    font-size: 14px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    font-size: 14px;
    color: #a0aec0;
}

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

.btn-sticky {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 20px;
    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: 20px;
}

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

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

/* Page Hero */
.page-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero .lead {
    font-size: 20px;
    opacity: 0.95;
}

/* About Story */
.about-story {
    padding: 80px 20px;
    background: #ffffff;
}

.split-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-text {
    flex: 1.2;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.content-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.content-image {
    flex: 1;
}

.content-image img {
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values-section {
    padding: 80px 20px;
    background: #f7fafc;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a202c;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 32px;
    background: #ffffff;
    border-left: 4px solid #3182ce;
    border-radius: 4px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a202c;
}

.value-item p {
    font-size: 16px;
    color: #4a5568;
}

/* Team Section */
.team-section {
    padding: 80px 20px;
    background: #ffffff;
}

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: #1a202c;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.team-member {
    flex: 0 1 250px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 16px;
    border: 4px solid #e2e8f0;
}

.team-member h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a202c;
}

.team-member .role {
    font-size: 14px;
    color: #3182ce;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 14px;
    color: #4a5568;
}

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

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
}

.approach-section p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #4a5568;
}

.approach-list {
    list-style: none;
    margin-top: 24px;
}

.approach-list li {
    font-size: 16px;
    margin-bottom: 16px;
    padding-left: 24px;
    position: relative;
    color: #2d3748;
}

.approach-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: 700;
}

/* CTA Sections */
.cta-about,
.cta-services {
    padding: 80px 20px;
    background: #3182ce;
    color: #ffffff;
    text-align: center;
}

.cta-about h2,
.cta-services h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-about p,
.cta-services p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

/* Services Detail */
.services-detail {
    padding: 60px 20px;
    background: #f7fafc;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
    overflow: hidden;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.service-detail-header h2 {
    font-size: 28px;
    margin: 0;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
}

.price-tag span {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.9;
}

.service-detail-content {
    display: flex;
    padding: 40px 32px;
    gap: 32px;
}

.service-description {
    flex: 1.5;
}

.service-description h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #1a202c;
}

.service-description p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a5568;
}

.service-description ul {
    margin: 16px 0 16px 24px;
}

.service-description li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2d3748;
}

.service-action {
    flex: 0.5;
    display: flex;
    align-items: flex-start;
}

.service-action .btn-select {
    width: 100%;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: #ffffff;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a202c;
}

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.faq-item p {
    font-size: 16px;
    color: #4a5568;
}

/* Contact Section */
.contact-section {
    padding: 60px 20px;
    background: #ffffff;
}

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info,
.contact-form-wrapper {
    flex: 1;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a202c;
}

.contact-block {
    margin-bottom: 32px;
}

.contact-block h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #3182ce;
    font-weight: 600;
}

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

.info-box {
    padding: 24px;
    background: #f7fafc;
    border-left: 4px solid #3182ce;
    border-radius: 4px;
    margin-bottom: 24px;
}

.info-box h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a202c;
}

.info-box p {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 8px;
}

/* Map Section */
.map-section {
    padding: 60px 20px;
    background: #edf2f7;
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
    color: #1a202c;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(49, 130, 206, 0.95);
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

.map-overlay p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* Thanks Page */
.thanks-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: #ffffff;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #ffffff;
    color: #38a169;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.thanks-details {
    padding: 80px 20px;
    background: #ffffff;
}

.thanks-details h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a202c;
}

.steps-list {
    max-width: 700px;
    margin: 0 auto 40px;
}

.step-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

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

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a202c;
}

.step-content p {
    font-size: 16px;
    color: #4a5568;
}

.thanks-info {
    padding: 24px;
    background: #edf2f7;
    border-radius: 8px;
    margin-top: 40px;
}

.thanks-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #2d3748;
}

.thanks-info p:last-child {
    margin-bottom: 0;
}

/* Thanks Next Steps */
.thanks-next {
    padding: 80px 20px;
    background: #f7fafc;
}

.thanks-next h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a202c;
}

.next-steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.next-step-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.next-step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
}

.next-step-card p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #4a5568;
}

/* Legal Content */
.legal-content {
    padding: 60px 20px;
    background: #ffffff;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #1a202c;
}

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

.legal-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #2d3748;
}

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

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

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

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

    .nav-right {
        gap: 16px;
    }

    .hero-split {
        flex-direction: column;
    }

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

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

    .hero-text p {
        font-size: 18px;
    }

    .split-feature,
    .split-reverse {
        flex-direction: column;
    }

    .feature-text {
        padding: 40px 20px;
    }

    .form-wrapper-split {
        flex-direction: column;
    }

    .trust-grid,
    .services-grid,
    .values-grid {
        flex-direction: column;
    }

    .trust-card,
    .service-card,
    .value-item {
        min-width: 100%;
    }

    .split-content,
    .contact-split {
        flex-direction: column;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

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

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

    .next-steps-grid {
        flex-direction: column;
    }

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

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .btn-sticky {
        width: 100%;
    }
}
