/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    background: #fff;
}

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #3498db;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a252f;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #546e7a;
}

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

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

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

/* Navigation */
.main-nav {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2980b9;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

/* Hero Section - Split Screen */
.hero-split {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

/* Split Container - Core Layout Pattern */
.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

.split-text {
    flex: 1;
}

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

.split-image img {
    width: 100%;
    height: auto;
}

.split-form {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

/* Trust Section */
.trust-section {
    background: #f8f9fa;
}

/* Insight Section */
.insight-section {
    padding: 100px 20px;
    background: #2c3e50;
    color: #fff;
}

.insight-section h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.insight-section p {
    font-size: 1.25rem;
    line-height: 1.8;
}

/* Benefits Grid */
.benefits-grid {
    padding: 100px 20px;
    background: #fff;
}

.benefits-grid h2 {
    text-align: center;
    margin-bottom: 60px;
}

.cards-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.benefit-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.benefit-card h3 {
    padding: 20px 20px 10px;
}

.benefit-card p {
    padding: 0 20px 20px;
    color: #546e7a;
}

/* Services Preview Section */
.services-preview {
    background: #f8f9fa;
}

.service-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #2980b9;
}

.service-item h4 {
    margin-bottom: 8px;
    color: #2c3e50;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
}

.service-item p:last-child {
    margin-bottom: 0;
    color: #546e7a;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.testimonials-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 8px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

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

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #546e7a;
}

/* Form Section */
.form-section {
    background: #fff;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    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: #2980b9;
}

.form-group textarea {
    resize: vertical;
}

/* Buttons */
.cta-primary {
    display: inline-block;
    background: #2980b9;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background: #3498db;
    color: #fff;
    transform: translateY(-2px);
}

.cta-primary.large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #2980b9;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #2980b9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2980b9;
    color: #fff;
}

button.cta-primary {
    width: 100%;
}

/* Final CTA */
.final-cta {
    padding: 40px 20px;
    background: #f8f9fa;
    text-align: center;
}

/* Footer */
.main-footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #95a5a6;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #95a5a6;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #27ae60;
    color: #fff;
}

.cookie-btn.accept:hover {
    background: #2ecc71;
}

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

.cookie-btn.reject:hover {
    background: #fff;
    color: #2c3e50;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #27ae60;
    color: #fff;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(39,174,96,0.4);
    z-index: 1500;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: #2ecc71;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(39,174,96,0.5);
}

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

.page-hero h1 {
    color: #fff;
    margin-bottom: 1rem;
}

.page-hero .lead {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
}

/* About Page Styles */
.about-story {
    background: #fff;
}

.values-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.value-card h3 {
    color: #2980b9;
    margin-bottom: 1rem;
}

.team-section {
    background: #fff;
}

.approach-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.approach-section .container-narrow {
    text-align: center;
    margin-bottom: 60px;
}

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

.approach-step {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2980b9;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.approach-step h3 {
    margin-bottom: 1rem;
}

.stats-section {
    padding: 100px 20px;
    background: #2c3e50;
    color: #fff;
}

.stats-section h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.stats-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.125rem;
    color: #ecf0f1;
}

/* Services Page Styles */
.services-intro {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.services-intro p {
    font-size: 1.125rem;
    color: #546e7a;
}

.services-detailed {
    padding: 60px 20px;
    background: #f8f9fa;
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    align-items: flex-start;
    gap: 60px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.service-content {
    flex: 1.2;
    padding: 40px;
}

.service-image {
    flex: 1;
}

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

.service-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ecf0f1;
}

.service-header h2 {
    margin-bottom: 10px;
}

.service-price-large {
    font-size: 1.75rem;
    font-weight: 700;
    color: #27ae60;
}

.service-body h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-body ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-body ul li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
}

.service-body ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.pricing-note {
    padding: 80px 20px;
    background: #fff;
}

.pricing-note h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.pricing-note p {
    font-size: 1.125rem;
    color: #546e7a;
}

/* Contact Page Styles */
.contact-info-section {
    background: #fff;
}

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

.contact-item h3 {
    color: #2980b9;
    margin-bottom: 10px;
}

.contact-item a {
    color: #2980b9;
    font-weight: 600;
}

.contact-item .note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 5px;
}

.location-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.location-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.location-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.location-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.location-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.location-card p {
    color: #546e7a;
}

.faq-section {
    padding: 100px 20px;
    background: #fff;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    padding-bottom: 30px;
    border-bottom: 1px solid #ecf0f1;
}

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

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.faq-item p {
    color: #546e7a;
    margin: 0;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 100px 20px 60px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: #fff;
}

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
    height: 80px;
}

.thanks-hero h1 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.thanks-info {
    margin-bottom: 40px;
}

.thanks-info h2 {
    text-align: center;
    margin-bottom: 60px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    width: 40px;
    height: 40px;
    background: #2980b9;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 8px;
}

.step-content p {
    color: #546e7a;
    margin: 0;
}

.service-info-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.service-info-box h3 {
    margin-bottom: 10px;
}

.service-info-box p {
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.thanks-resources {
    padding: 80px 20px;
    background: #f8f9fa;
}

.thanks-resources h2 {
    text-align: center;
    margin-bottom: 60px;
}

.resource-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.resource-card h3 {
    margin-bottom: 15px;
}

.resource-card p {
    color: #546e7a;
    margin-bottom: 20px;
}

.thanks-cta {
    padding: 40px 20px;
    background: #fff;
}

.thanks-cta p {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
}

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

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.legal-page h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #546e7a;
}

.legal-page ul {
    margin-bottom: 1rem;
    padding-left: 30px;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #2980b9;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #3498db;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table tr:hover {
    background: #f8f9fa;
}

.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .split-container {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }

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

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

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

    .service-image {
        width: 100%;
        min-height: 300px;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .stats-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 15px 20px;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.125rem;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 24px;
        font-size: 0.9rem;
    }

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

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

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

    .testimonial {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .cta-primary.large {
        padding: 16px 32px;
        font-size: 1rem;
    }

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

    .cookie-btn {
        width: 100%;
    }

    .stat-number {
        font-size: 2.25rem;
    }
}