:root {
    --color-primary: #2d5a27;
    --color-primary-dark: #1e3d1a;
    --color-secondary: #7cb342;
    --color-accent: #f9a825;
    --color-text: #2c3e2c;
    --color-text-light: #5a6d5a;
    --color-bg: #ffffff;
    --color-bg-alt: #f5f8f5;
    --color-bg-dark: #2c3e2c;
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --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 32px rgba(0,0,0,0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

h1, h2, h3, h4 {
    line-height: 1.3;
    color: var(--color-text);
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
}

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

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

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

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

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

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

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

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

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

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

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 1rem 5%;
    background: var(--color-bg-alt);
    border-top: 1px solid rgba(0,0,0,0.05);
}

.nav-mobile a {
    padding: 0.75rem 0;
    color: var(--color-text);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.btn-primary {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--color-primary);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: all var(--transition);
}

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

.btn-light {
    display: inline-block;
    background: #fff;
    color: var(--color-primary);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-light:hover {
    background: var(--color-bg-alt);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    text-align: center;
}

.hero {
    padding-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-split {
    display: flex;
    width: 100%;
}

.hero-content {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 480px;
}

.hero-image {
    flex: 1;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

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

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

.label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

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

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

.split-section {
    display: flex;
    min-height: 500px;
}

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

.split-section.darker {
    background: var(--color-bg-alt);
}

.split-content {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

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

.split-content .btn-secondary {
    align-self: flex-start;
    margin-top: 1rem;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.price-inline {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 0.5rem;
}

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

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

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

.service-card {
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    padding: 2rem;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

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

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

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

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

.testimonials {
    padding: 5rem 5%;
    background: var(--color-bg-dark);
    color: #fff;
}

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

.testimonials-header h2 {
    color: #fff;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9375rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    opacity: 0.7;
}

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

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

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

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

.process-step {
    flex: 1;
    min-width: 220px;
    padding: 1.5rem;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    opacity: 0.4;
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.process-step p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

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

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

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

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

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

.booking-split {
    display: flex;
    gap: 4rem;
    max-width: 1100px;
    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 {
    list-style: none;
}

.booking-benefits li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-text-light);
}

.booking-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

.booking-form-wrapper {
    flex: 1;
    max-width: 480px;
}

.booking-form {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    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-group textarea {
    resize: vertical;
}

.trust-section {
    padding: 4rem 5%;
    background: var(--color-bg-alt);
}

.trust-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.trust-label {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.7;
    font-size: 0.9375rem;
    max-width: 280px;
}

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

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

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    padding: 0.375rem 0;
    font-size: 0.9375rem;
}

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

.footer-contact {
    flex: 1;
    min-width: 180px;
}

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

.footer-contact p {
    opacity: 0.7;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    color: #fff;
    padding: 1.25rem 5%;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-content p {
    font-size: 0.9375rem;
    opacity: 0.9;
}

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

.btn-cookie {
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

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

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: var(--color-accent);
    color: var(--color-text);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    z-index: 900;
    transition: all var(--transition);
}

.sticky-cta:hover {
    transform: scale(1.05);
    color: var(--color-text);
}

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

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

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

.page-hero-content p {
    opacity: 0.9;
    font-size: 1.125rem;
}

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

.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: 240px;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
}

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

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

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

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

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

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

.credential {
    flex: 1;
    min-width: 200px;
}

.credential h4 {
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.credential p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.stats-section {
    padding: 4rem 5%;
    background: var(--color-bg-alt);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

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

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
}

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

.services-intro {
    padding: 3rem 5%;
    background: var(--color-bg-alt);
}

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

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

.service-detail {
    padding: 4rem 5%;
}

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

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

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

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

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

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

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

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

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

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-size: 1.5rem;
    line-height: 1;
}

.service-pricing {
    margin-bottom: 1.5rem;
}

.price-main {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.service-detail-image {
    flex: 1;
    max-width: 450px;
}

.service-detail-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.pricing-note {
    padding: 4rem 5%;
    background: var(--color-bg-dark);
    color: #fff;
}

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

.pricing-note-content h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.pricing-note-content p {
    opacity: 0.85;
    margin-bottom: 1rem;
}

.services-form-section {
    padding: 5rem 5%;
}

.services-form-split {
    display: flex;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.services-form-info {
    flex: 1;
}

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

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

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

.form-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--color-text-light);
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

.services-form-wrapper {
    flex: 1;
    max-width: 450px;
}

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

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

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

.contact-info-section {
    flex: 1;
}

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

.contact-block h2 {
    margin-bottom: 2rem;
}

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

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

.contact-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-text strong {
    display: block;
    margin-bottom: 0.25rem;
}

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

.response-note {
    display: block;
    font-size: 0.875rem;
    color: var(--color-secondary);
    margin-top: 0.25rem;
}

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

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

.areas-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1rem;
}

.areas-list li {
    color: var(--color-text-light);
    position: relative;
    padding-left: 1rem;
}

.areas-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

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

.contact-additional {
    flex: 1;
}

.quick-response {
    margin-bottom: 3rem;
}

.quick-response h3 {
    margin-bottom: 1.5rem;
}

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

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

.faq-item p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

.contact-cta-box {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.contact-cta-box h3 {
    margin-bottom: 0.75rem;
}

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

.map-section {
    padding: 0;
}

.map-container {
    position: relative;
    height: 350px;
    background: var(--color-bg-alt);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-bg);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.map-overlay p {
    font-weight: 500;
    margin: 0;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    color: var(--color-secondary);
}

.thanks-icon svg {
    width: 100%;
    height: 100%;
}

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

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

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

.thanks-next {
    text-align: left;
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.thanks-next h3 {
    margin-bottom: 1rem;
}

.thanks-next ul {
    list-style: none;
}

.thanks-next li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--color-text-light);
}

.thanks-next li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

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

.thanks-contact {
    padding: 3rem 5%;
    background: var(--color-bg-alt);
    text-align: center;
}

.thanks-contact-content h3 {
    margin-bottom: 0.5rem;
}

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

.thanks-contact .hours {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

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

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

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

.legal-content {
    padding: 4rem 5%;
}

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

.legal-container h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-container h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

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

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

.legal-container li {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

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

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

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

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

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

@media (max-width: 900px) {
    .nav-desktop {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-image {
        min-height: 300px;
    }

    .split-section {
        flex-direction: column;
    }

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

    .split-image {
        min-height: 300px;
    }

    .services-grid {
        justify-content: center;
    }

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

    .booking-split {
        flex-direction: column;
    }

    .booking-form-wrapper {
        max-width: 100%;
    }

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

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

    .service-detail-image {
        max-width: 100%;
    }

    .services-form-split {
        flex-direction: column;
    }

    .services-form-wrapper {
        max-width: 100%;
    }

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

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

    .sticky-cta {
        bottom: 80px;
        right: 15px;
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 600px) {
    .hero-content {
        padding: 3rem 5%;
    }

    .trust-content {
        gap: 2rem;
    }

    .trust-item {
        min-width: 45%;
    }

    .footer-grid {
        gap: 2rem;
    }

    .footer-brand {
        flex: 100%;
    }

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

    .stats-grid {
        gap: 2rem;
    }

    .stat-item {
        min-width: 45%;
    }
}
