:root {
    --color-primary: #2e7d32;
    --color-primary-dark: #1b5e20;
    --color-primary-light: #4caf50;
    --color-secondary: #5d4037;
    --color-accent: #ff6f00;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-text-muted: #888888;
    --color-bg: #ffffff;
    --color-bg-alt: #f5f7f5;
    --color-bg-dark: #1a2e1a;
    --color-border: #e0e0e0;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

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

a:hover {
    color: var(--color-primary-dark);
}

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

ul {
    list-style: none;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-bg);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

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

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

.main-nav {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

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

.nav-list a {
    color: var(--color-text);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a.active {
    color: var(--color-primary);
}

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: #fff;
}

.btn-secondary {
    background: var(--color-secondary);
    color: #fff;
}

.btn-secondary:hover {
    background: #4e342e;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #fff;
}

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

.btn-outline-light:hover {
    background: #fff;
    color: var(--color-primary);
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-full {
    width: 100%;
}

.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 8rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image svg {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.intro-section {
    background: var(--color-bg-alt);
    padding: 5rem 2rem;
}

.intro-wrapper {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.intro-text {
    flex: 1.5;
}

.intro-text h2 {
    margin-bottom: 1.5rem;
}

.intro-text p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.services-preview {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 250px;
    max-width: calc(25% - 1.5rem);
    padding: 2rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-price {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.process-section {
    background: var(--color-bg-dark);
    padding: 5rem 2rem;
    color: #fff;
}

.process-content {
    max-width: 1000px;
    margin: 0 auto;
}

.process-content h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}

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

.process-step {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-primary-light);
}

.step-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary-light);
    margin-bottom: 0.5rem;
}

.process-step h3 {
    color: #fff;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.process-step p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.testimonials-section {
    padding: 5rem 2rem;
    background: var(--color-bg-alt);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.testimonial blockquote {
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    color: var(--color-text);
    line-height: 1.7;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
}

.seasonal-section {
    padding: 5rem 2rem;
}

.seasonal-content {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.seasonal-image {
    flex: 1;
    max-width: 400px;
}

.seasonal-image svg {
    border-radius: var(--radius-lg);
}

.seasonal-text {
    flex: 1;
}

.seasonal-text h2 {
    margin-bottom: 1rem;
}

.seasonal-text p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.seasonal-list {
    margin-bottom: 2rem;
}

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

.seasonal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.booking-section {
    padding: 5rem 2rem;
    background: var(--color-bg-alt);
}

.booking-wrapper {
    display: flex;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    margin-bottom: 1rem;
}

.booking-info > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

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

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

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
}

.booking-form {
    flex: 1;
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-row {
    display: flex;
    gap: 1rem;
}

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

.site-footer {
    background: var(--color-bg-dark);
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.footer-brand p {
    margin-top: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 300px;
}

.footer-links,
.footer-legal {
    flex: 1;
    min-width: 150px;
}

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

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    padding: 1.5rem 2rem;
    z-index: 1001;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    display: none;
}

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

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

.cookie-content p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    flex: 1;
}

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

.btn-accept {
    background: var(--color-primary);
    color: #fff;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.sticky-cta {
    position: fixed;
    bottom: 80px;
    right: 2rem;
    background: var(--color-accent);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all var(--transition);
}

.sticky-cta:hover {
    background: #e65100;
    color: #fff;
    transform: scale(1.05);
}

.page-hero {
    padding: 10rem 2rem 4rem;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    text-align: center;
}

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

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

.page-hero p {
    font-size: 1.25rem;
    color: var(--color-text-light);
}

.page-hero-about {
    background: linear-gradient(135deg, #e8f5e9 0%, #f5f7f5 100%);
}

.page-hero-services {
    background: linear-gradient(135deg, #f1f8e9 0%, #f5f7f5 100%);
}

.page-hero-contact {
    background: linear-gradient(135deg, #e3f2fd 0%, #f5f7f5 100%);
}

.about-intro {
    padding: 5rem 2rem;
}

.about-intro-content {
    display: flex;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.about-text-block {
    flex: 1.2;
}

.about-text-block h2 {
    margin-bottom: 1.5rem;
}

.about-text-block p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.about-image-block {
    flex: 1;
}

.about-image-block svg {
    border-radius: var(--radius-lg);
}

.values-section {
    padding: 5rem 2rem;
    background: var(--color-bg-alt);
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    min-width: 220px;
    max-width: calc(25% - 1.5rem);
    padding: 2rem;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.team-section {
    padding: 5rem 2rem;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-header p {
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    min-width: 220px;
    max-width: calc(25% - 1.5rem);
    text-align: center;
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.member-role {
    display: block;
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.history-section {
    padding: 5rem 2rem;
    background: var(--color-bg-alt);
}

.history-content {
    max-width: 800px;
    margin: 0 auto;
}

.history-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-primary-light);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translateX(-5px);
}

.timeline-year {
    display: inline-block;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: var(--color-text-light);
}

.certifications-section {
    padding: 4rem 2rem;
    text-align: center;
}

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

.certifications-content h2 {
    margin-bottom: 1rem;
}

.certifications-content > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cert-badge {
    padding: 1rem 2rem;
    background: var(--color-bg-alt);
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--color-primary);
}

.about-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
}

.about-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.about-cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.about-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.services-intro {
    padding: 3rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

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

.service-detail {
    padding: 5rem 2rem;
}

.service-detail.alt-bg {
    background: var(--color-bg-alt);
}

.service-detail-content {
    display: flex;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

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

.service-detail-text {
    flex: 1.3;
}

.service-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.service-detail-text h2 {
    margin-bottom: 1rem;
}

.service-detail-text > p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.service-includes {
    margin-bottom: 2rem;
}

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

.service-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

.service-pricing {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.alt-bg .service-pricing {
    background: #fff;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

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

.price-label {
    color: var(--color-text);
}

.price-value {
    font-weight: 700;
    color: var(--color-primary);
}

.service-detail-image {
    flex: 1;
}

.service-detail-image svg {
    border-radius: var(--radius-lg);
}

.pricing-note {
    padding: 4rem 2rem;
    text-align: center;
    background: #fff9c4;
}

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

.pricing-note h2 {
    margin-bottom: 1rem;
}

.pricing-note p {
    margin-bottom: 1rem;
    color: var(--color-text);
}

.services-cta {
    background: var(--color-bg-dark);
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
}

.services-cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.services-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-main {
    padding: 5rem 2rem;
}

.contact-wrapper {
    display: flex;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: var(--color-text-light);
    margin: 0;
}

.contact-text a {
    color: var(--color-primary);
}

.contact-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.contact-map {
    flex: 1;
}

.map-placeholder svg {
    border-radius: var(--radius-lg);
    width: 100%;
}

.service-areas {
    padding: 5rem 2rem;
    background: var(--color-bg-alt);
}

.service-areas-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-areas h2 {
    margin-bottom: 1rem;
}

.service-areas > .service-areas-content > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.areas-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    text-align: left;
    margin: 2rem 0;
}

.area-column h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.area-column ul li {
    padding: 0.25rem 0;
    color: var(--color-text-light);
}

.areas-note {
    font-style: italic;
    color: var(--color-text-muted);
}

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

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.faq-item p {
    color: var(--color-text-light);
    margin: 0;
}

.contact-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
}

.contact-cta h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.contact-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.thanks-section {
    padding: 10rem 2rem 5rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    padding: 1rem 1.5rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.service-confirmation p {
    margin: 0;
}

.thanks-details {
    text-align: left;
    margin-bottom: 2rem;
}

.thanks-details h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
}

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

.step p {
    margin: 0;
    color: var(--color-text-light);
    text-align: left;
}

.thanks-contact {
    margin-bottom: 2rem;
}

.thanks-contact p {
    color: var(--color-text-light);
}

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

.thanks-extra {
    padding: 4rem 2rem;
    background: var(--color-bg-alt);
}

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

.thanks-extra h2 {
    margin-bottom: 0.5rem;
}

.thanks-extra > .thanks-extra-content > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.extra-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.extra-link {
    flex: 1;
    max-width: 250px;
    padding: 2rem;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.extra-link h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.extra-link p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
}

.legal-hero {
    padding: 10rem 2rem 3rem;
    background: var(--color-bg-alt);
    text-align: center;
}

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

.legal-hero p {
    color: var(--color-text-muted);
}

.legal-content {
    padding: 4rem 2rem;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-article h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.legal-article h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-article h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-article p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.legal-article ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-article ul li {
    position: relative;
    padding: 0.25rem 0;
    color: var(--color-text-light);
    list-style: disc;
}

.legal-article a {
    color: var(--color-primary);
}

.legal-date {
    margin-top: 2rem;
    font-style: italic;
    color: var(--color-text-muted);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 2rem;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.cookie-table th {
    background: var(--color-bg-alt);
    font-weight: 600;
    color: var(--color-text);
}

.cookie-table td {
    color: var(--color-text-light);
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        padding-top: 7rem;
        text-align: center;
    }

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

    .hero-content p {
        margin: 0 auto 2rem;
    }

    .intro-wrapper,
    .seasonal-content,
    .about-intro-content,
    .service-detail-content,
    .service-detail-content.reverse,
    .contact-wrapper,
    .booking-wrapper {
        flex-direction: column;
    }

    .service-card,
    .value-card,
    .team-member {
        max-width: 100%;
    }

    .seasonal-image,
    .about-image-block,
    .service-detail-image {
        max-width: 100%;
        order: -1;
    }

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

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

    .header-inner {
        padding: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--color-bg);
        padding: 1rem;
        gap: 0;
        box-shadow: var(--shadow-md);
    }

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

    .nav-list li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .hero {
        padding: 6rem 1rem 3rem;
        min-height: auto;
    }

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

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

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

    .sticky-cta {
        bottom: 100px;
        right: 1rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .areas-grid {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .extra-links {
        flex-direction: column;
        align-items: center;
    }

    .extra-link {
        max-width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .cookie-table {
        font-size: 0.85rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .services-grid,
    .values-grid,
    .team-grid {
        flex-direction: column;
    }

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

    .cert-badges {
        flex-direction: column;
    }
}
