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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.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 {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #2ECC71;
    color: #fff;
}

.btn-cookie-accept:hover {
    background: #27AE60;
}

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

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

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2C3E50;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #555;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2ECC71;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #2ECC71;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Split Screen Layout - Main Archetype */
.split-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.split-left,
.split-right {
    flex: 1;
}

.split-left img,
.split-right img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

/* Hero Section */
.hero-split {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-split h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2C3E50;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-split p {
    font-size: 19px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Buttons and CTAs */
.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary {
    background: #2ECC71;
    color: #fff;
}

.cta-primary:hover {
    background: #27AE60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.cta-secondary {
    background: transparent;
    color: #2ECC71;
    border: 2px solid #2ECC71;
}

.cta-secondary:hover {
    background: #2ECC71;
    color: #fff;
}

.cta-large {
    padding: 18px 45px;
    font-size: 18px;
    background: #2C3E50;
    color: #fff;
}

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

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 38px;
    color: #2C3E50;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

section p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.intro-section {
    background: #fff;
}

/* Benefits Cards */
.benefits-cards {
    background: #f8f9fa;
}

.benefits-cards h2 {
    text-align: center;
    margin-bottom: 50px;
}

.cards-grid {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.benefit-card {
    flex: 1;
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 24px;
    color: #2C3E50;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 16px;
    color: #666;
}

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

.services-list {
    margin: 25px 0;
}

.services-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ECC71;
    font-weight: bold;
    font-size: 18px;
}

/* Testimonials */
.testimonials {
    background: #2C3E50;
    color: #fff;
}

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

.testimonial-cards {
    display: flex;
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.testimonial {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #2ECC71;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: #ecf0f1;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    color: #bdc3c7;
    font-weight: 600;
}

/* Process Steps */
.process-split {
    background: #f8f9fa;
}

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

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

.step-number {
    width: 50px;
    height: 50px;
    background: #2ECC71;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    color: #2C3E50;
    margin-bottom: 8px;
}

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

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

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

.form-intro {
    text-align: center;
    color: #ecf0f1;
    margin-bottom: 40px;
    font-size: 17px;
}

.booking-form {
    background: #fff;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    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: #2ECC71;
}

.form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.form-checkbox label a {
    color: #2ECC71;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #2ECC71;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #27AE60;
    transform: translateY(-2px);
}

/* Final CTA */
.final-cta-split {
    background: #fff;
}

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

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

.hero-subtitle {
    font-size: 20px;
    color: #ecf0f1;
}

/* About Page */
.about-story,
.philosophy-section,
.team-expertise {
    background: #fff;
}

.about-story:nth-of-type(even) {
    background: #f8f9fa;
}

/* Values Grid */
.values-section {
    background: #f8f9fa;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    color: #2C3E50;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 16px;
    color: #666;
}

/* Approach Section */
.approach-section {
    background: #fff;
}

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

.cta-about {
    text-align: center;
    background: #2C3E50;
    color: #fff;
}

.cta-about h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-about p {
    color: #ecf0f1;
    margin-bottom: 30px;
    font-size: 18px;
}

/* Services Page */
.services-intro {
    background: #fff;
    padding: 40px 0;
}

.intro-text {
    font-size: 19px;
    color: #555;
    text-align: center;
    line-height: 1.8;
}

.service-detail {
    background: #fff;
    padding: 70px 0;
}

.service-detail.alt {
    background: #f8f9fa;
}

.service-tag {
    display: inline-block;
    background: #2ECC71;
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-price {
    font-size: 36px;
    color: #2ECC71;
    font-weight: 700;
    margin: 15px 0;
}

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

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

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ECC71;
    font-weight: bold;
    font-size: 18px;
}

.service-duration {
    font-size: 15px;
    color: #888;
    font-style: italic;
    margin: 20px 0;
}

.featured-service {
    border-top: 4px solid #2ECC71;
    border-bottom: 4px solid #2ECC71;
}

.savings-note {
    font-size: 16px;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 20px;
}

/* FAQ Sections */
.service-faq,
.contact-additional {
    background: #f8f9fa;
}

.service-faq h2,
.contact-additional h2 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-grid,
.faq-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

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

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

.services-cta {
    text-align: center;
    background: #2C3E50;
    color: #fff;
}

.services-cta h2 {
    color: #fff;
    margin-bottom: 20px;
}

.services-cta p {
    color: #ecf0f1;
    margin-bottom: 30px;
    font-size: 18px;
}

/* Contact Page */
.contact-main {
    background: #fff;
}

.contact-info-block {
    margin: 30px 0;
}

.contact-info-block h3 {
    font-size: 20px;
    color: #2C3E50;
    margin-bottom: 10px;
}

.contact-info-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-info-block a {
    color: #2ECC71;
    text-decoration: underline;
}

.map-placeholder img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-cta {
    text-align: center;
    background: #f8f9fa;
}

.contact-cta h2 {
    margin-bottom: 20px;
}

.contact-cta p {
    margin-bottom: 30px;
    font-size: 18px;
}

/* Thanks Page */
.thanks-hero {
    background: linear-gradient(135deg, #2ECC71 0%, #27AE60 100%);
    color: #fff;
    padding: 80px 0;
}

.thanks-content {
    text-align: center;
    background: #fff;
    color: #333;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: #2C3E50;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 19px;
    color: #555;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 28px;
    color: #2C3E50;
    margin-bottom: 30px;
}

.next-steps {
    text-align: left;
    margin: 30px 0;
}

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

.step-item .step-number {
    width: 40px;
    height: 40px;
    background: #2ECC71;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    font-size: 16px;
    color: #555;
}

.thanks-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    margin: 30px 0;
    text-align: left;
}

.thanks-note p {
    font-size: 15px;
    color: #856404;
    margin: 0;
}

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

.thanks-additional {
    background: #f8f9fa;
}

.thanks-additional h2 {
    text-align: center;
    margin-bottom: 50px;
}

.additional-grid {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.additional-card {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.additional-card h3 {
    font-size: 22px;
    color: #2C3E50;
    margin-bottom: 15px;
}

.additional-card p {
    font-size: 16px;
    color: #666;
}

.additional-card a {
    color: #2ECC71;
    text-decoration: underline;
}

/* Legal Pages */
.legal-content {
    background: #fff;
    padding: 60px 0;
}

.legal-intro {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-left: 4px solid #2ECC71;
}

.legal-content h2 {
    font-size: 28px;
    color: #2C3E50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: #2C3E50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    list-style: disc;
    margin-bottom: 10px;
    color: #555;
    font-size: 16px;
}

.legal-content a {
    color: #2ECC71;
    text-decoration: underline;
}

.legal-date {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
    font-size: 15px;
    color: #888;
}

/* Footer */
.footer {
    background: #2C3E50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column p {
    font-size: 15px;
    color: #bdc3c7;
    line-height: 1.7;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: #bdc3c7;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .split-container {
        flex-direction: column;
        gap: 40px;
    }

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

    .cards-grid,
    .testimonial-cards,
    .values-grid,
    .faq-grid,
    .additional-grid {
        flex-direction: column;
    }

    .hero-split h1 {
        font-size: 38px;
    }

    section h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-split h1 {
        font-size: 32px;
    }

    section {
        padding: 50px 0;
    }

    section h2 {
        font-size: 28px;
    }

    .booking-form {
        padding: 30px 20px;
    }

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

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

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

    .cookie-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container,
    .container-narrow {
        padding: 0 20px;
    }

    .hero-split h1 {
        font-size: 26px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    section h2 {
        font-size: 24px;
    }

    .cta-primary,
    .cta-secondary,
    .cta-large {
        padding: 12px 25px;
        font-size: 15px;
    }

    .service-price {
        font-size: 28px;
    }
}