:root {
    --primary-color: #2c7a3f;
    --primary-dark: #1e5a2d;
    --secondary-color: #f4a62a;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

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

.ad-disclosure {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
}

.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

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

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

.hero-split {
    background-color: var(--bg-light);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero-text {
    flex: 1;
    padding: 64px 48px 64px 64px;
}

.hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    height: 600px;
    background-color: #e8e8e8;
}

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

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 32px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 48px;
}

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

.intro-section {
    background-color: var(--bg-white);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 64px;
}

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

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

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.4rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.split-text p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.services-preview {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 56px;
    color: var(--text-dark);
}

.services-grid {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    flex: 1;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.card-image {
    height: 240px;
    background-color: #e8e8e8;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 24px 24px 12px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    padding: 0 24px;
    margin-bottom: 16px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 0 24px;
    margin-bottom: 16px;
}

.link-arrow {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 0 24px 24px;
    transition: color 0.3s ease;
}

.link-arrow::after {
    content: " →";
}

.link-arrow:hover {
    color: var(--primary-dark);
}

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

.benefits-section {
    background-color: var(--bg-white);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 28px;
    padding-left: 32px;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
}

.benefits-list strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.benefits-list span {
    display: block;
    color: var(--text-medium);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.cta-box {
    text-align: center;
    color: var(--bg-white);
}

.cta-box h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 64px 48px 32px;
    display: flex;
    gap: 64px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.footer-column p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--bg-white);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 32px 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--text-medium);
}

.cookie-content a {
    color: var(--primary-color);
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cookie-accept:hover {
    background-color: var(--primary-dark);
}

.cookie-reject {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.cookie-reject:hover {
    background-color: var(--border-color);
}

.page-hero {
    background-color: var(--bg-light);
    text-align: center;
    padding: 80px 32px;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.lead {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    background-color: var(--bg-white);
}

.mission-section {
    background-color: var(--bg-light);
}

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

.mission-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.mission-card p {
    color: var(--text-medium);
}

.stats-section {
    background-color: var(--bg-white);
}

.stats-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.05rem;
    color: var(--text-medium);
}

.team-section {
    background-color: var(--bg-light);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.team-features {
    display: flex;
    gap: 40px;
}

.feature-item {
    flex: 1;
    text-align: center;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-medium);
}

.services-detailed {
    background-color: var(--bg-white);
}

.service-item {
    margin-bottom: 80px;
}

.service-layout {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

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

.service-image {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.service-info {
    flex: 1;
}

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

.price-highlight {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-medium);
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-note {
    font-style: italic;
    color: var(--text-light);
    margin: 20px 0;
}

.select-service-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.booking-section {
    background-color: var(--bg-light);
}

.booking-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

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

.form-row {
    display: flex;
    gap: 24px;
}

.form-row .form-group {
    flex: 1;
}

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

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

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

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

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

.form-consent span {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.form-consent a {
    color: var(--primary-color);
}

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

.submit-button:hover {
    background-color: var(--primary-dark);
}

.contact-content {
    background-color: var(--bg-white);
}

.contact-layout {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-detail {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.contact-image {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

.service-area-section {
    background-color: var(--bg-light);
}

.service-area-section h2 {
    font-size: 2.4rem;
    margin-bottom: 24px;
    text-align: center;
    color: var(--text-dark);
}

.service-area-section > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.service-highlights {
    display: flex;
    gap: 40px;
}

.highlight-item {
    flex: 1;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.highlight-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.highlight-item p {
    color: var(--text-medium);
}

.thanks-section {
    background-color: var(--bg-light);
    min-height: 60vh;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

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

.thanks-message {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.thanks-details {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.thanks-details p {
    color: var(--text-medium);
}

.next-steps {
    margin-bottom: 48px;
    text-align: left;
}

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

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

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

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

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-medium);
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.help-section {
    background-color: var(--bg-white);
}

.help-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-dark);
}

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

.faq-item {
    flex: 1 1 calc(50% - 16px);
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-medium);
}

.legal-content {
    background-color: var(--bg-white);
}

.legal-intro {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.7;
}

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

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--text-medium);
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 32px;
    color: var(--text-medium);
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text {
        padding: 48px 32px;
    }

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

    .hero-image {
        width: 100%;
        height: 400px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 40px;
    }

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

    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-column {
        flex: 1 1 calc(50% - 20px);
    }

    .service-layout,
    .service-layout.reverse {
        flex-direction: column;
    }

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

    .mission-grid,
    .team-features,
    .service-highlights {
        flex-direction: column;
    }

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

    .faq-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
    }

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

    .main-nav a {
        padding: 16px 32px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .section-title {
        font-size: 2rem;
    }

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

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

    .cookie-accept,
    .cookie-reject {
        flex: 1;
    }

    .form-row {
        flex-direction: column;
    }

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

    .container,
    .container-wide,
    .container-narrow {
        padding: 48px 24px;
    }

    .footer-content {
        padding: 48px 24px 24px;
    }

    .footer-disclaimer {
        padding: 24px;
    }

    .footer-bottom {
        padding: 20px 24px;
    }
}