* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a7f7e;
    --secondary-color: #2d9c9a;
    --accent-color: #ff6b6b;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

.header-split {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    flex-wrap: wrap;
    min-height: 85vh;
    align-items: center;
}

.hero-left {
    flex: 1;
    min-width: 300px;
    padding: 4rem 5%;
}

.hero-left h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-right {
    flex: 1;
    min-width: 300px;
}

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

.split-reverse,
.split-standard {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 5rem 0;
}

.split-reverse {
    flex-direction: row-reverse;
    background: var(--light-bg);
}

.split-content {
    flex: 1;
    min-width: 300px;
    padding: 3rem 5%;
}

.split-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.split-image {
    flex: 1;
    min-width: 300px;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 5rem 5%;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial-block {
    padding: 5rem 5%;
    background: var(--primary-color);
    color: var(--white);
}

.testimonial-block blockquote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-block p {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-block cite {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

.cta-centered {
    padding: 5rem 5%;
    text-align: center;
    background: var(--light-bg);
}

.cta-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-centered p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.services-showcase {
    padding: 5rem 5%;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-list-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: var(--shadow-hover);
}

.service-left {
    flex: 2;
    min-width: 300px;
}

.service-left h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-left p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-ideal {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
}

.service-right {
    flex: 1;
    min-width: 200px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-select {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.form-section-split {
    display: flex;
    flex-wrap: wrap;
    padding: 5rem 0;
    background: var(--light-bg);
}

.form-left {
    flex: 1;
    min-width: 300px;
    padding: 3rem 5%;
}

.form-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-weight: 700;
}

.form-right {
    flex: 1;
    min-width: 300px;
    padding: 3rem 5%;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    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: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-primary,
.btn-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-inline {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-inline:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.footer-split {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.btn-sticky {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-hover);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background: #ff5252;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.hero-simple {
    padding: 5rem 5%;
    text-align: center;
    background: var(--light-bg);
}

.hero-simple h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--text-light);
}

.approach-grid,
.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.approach-item,
.info-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--white);
    border-left: 4px solid var(--primary-color);
}

.approach-item h3,
.info-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.approach-item p,
.info-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.mission-statement {
    padding: 5rem 5%;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.mission-statement h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mission-statement p {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

.team-approach {
    padding: 5rem 5%;
}

.team-approach h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

.values-deep {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.values-deep h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-deep-item {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 8px;
}

.value-deep-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-deep-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.process-section {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    text-align: center;
}

.step-number {
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.faq-section {
    padding: 5rem 5%;
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-split {
    display: flex;
    flex-wrap: wrap;
    padding: 5rem 0;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 3rem 5%;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-block .note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    padding: 3rem 5%;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.map-caption {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.additional-info {
    padding: 5rem 5%;
    background: var(--light-bg);
}

.additional-info h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

.thanks-hero {
    padding: 5rem 5%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.thanks-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.service-selected {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.next-steps {
    margin: 3rem 0;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 3rem 0;
}

.thanks-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.thanks-note p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content {
    padding: 5rem 10%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content .updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

.final-cta {
    padding: 6rem 5%;
    background: var(--dark-bg);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-intro {
        font-size: 1.1rem;
    }

    .split-content h2 {
        font-size: 1.8rem;
    }

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

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

    .btn-sticky {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .price {
        font-size: 2rem;
    }
}

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

    .split-content h2,
    .services-header h2,
    .cta-centered h2 {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}