:root {
    --color-primary: #2d5a45;
    --color-primary-dark: #1e3d2f;
    --color-primary-light: #4a7a63;
    --color-accent: #c4a35a;
    --color-accent-dark: #a68a42;
    --color-text: #2c2c2c;
    --color-text-light: #666666;
    --color-text-muted: #888888;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f6f3;
    --color-bg-dark: #e8e4df;
    --color-border: #ddd8d3;
    --font-primary: 'Segoe UI', system-ui, -apple-system, 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.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --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);
}

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-primary-dark);
}

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

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
}

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

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

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

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

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

.nav-menu a:hover::after,
.nav-menu 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 {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

.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);
    text-decoration: none;
}

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

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

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

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

.btn-accent {
    background: var(--color-accent);
    color: white;
}

.btn-accent:hover {
    background: var(--color-accent-dark);
    color: white;
}

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

.btn-outline {
    background: transparent;
    border: 1px solid currentColor;
}

.btn-full {
    width: 100%;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.hero-content {
    flex: 1 1 400px;
}

.hero-badge {
    display: inline-block;
    background: var(--color-bg-alt);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    color: var(--color-primary-dark);
}

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

.hero-image {
    flex: 1 1 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.trust-strip {
    background: var(--color-primary);
    padding: 2rem 1.5rem;
}

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

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
}

.trust-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

.section-tag {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

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

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

.intro-text {
    flex: 1 1 450px;
}

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

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

.intro-image {
    flex: 1 1 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

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

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

.services-header h2 {
    margin-top: 0.5rem;
}

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

.service-card {
    flex: 1 1 260px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all var(--transition);
}

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

.service-card-featured {
    border-color: var(--color-primary);
    border-width: 2px;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--color-bg-alt);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

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

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

.service-price {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-link {
    font-size: 0.875rem;
    font-weight: 600;
}

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

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

.testimonials-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.testimonials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

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

.testimonial cite {
    display: block;
    font-style: normal;
}

.testimonial cite strong {
    display: block;
    color: var(--color-text);
}

.testimonial cite span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.why-us-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.why-us-content {
    flex: 1 1 450px;
}

.why-us-content h2 {
    margin-bottom: 2rem;
}

.why-us-list {
    list-style: none;
}

.why-us-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.why-us-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
}

.why-us-list strong {
    display: block;
    margin-bottom: 0.25rem;
}

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

.why-us-image {
    flex: 1 1 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.why-us-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

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

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

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

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.gallery-section {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-item {
    flex: 1 1 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-large {
    flex: 2 1 500px;
}

.gallery-item-large img {
    height: 300px;
}

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

.form-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.form-info {
    flex: 1 1 300px;
}

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

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

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

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

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

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

.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;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-bg);
    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;
    min-height: 100px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.faq-section {
    padding: 5rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.faq-item {
    background: var(--color-bg-alt);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-light);
}

.footer {
    background: var(--color-text);
    color: white;
    padding: 4rem 1.5rem 2rem;
}

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

.footer-brand {
    flex: 1 1 300px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

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

.footer h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

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

.footer ul a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9375rem;
}

.footer ul a:hover {
    color: white;
}

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

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

.footer-minimal {
    padding: 2rem 1.5rem;
}

.footer-minimal .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding-top: 0;
    border-top: none;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer-legal-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

.footer-legal-links a:hover {
    color: white;
}

.sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 90;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition);
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-text);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform var(--transition);
}

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

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

.cookie-content p {
    flex: 1 1 400px;
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.9);
}

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

.cookie-actions .btn {
    background: white;
    color: var(--color-text);
}

.cookie-actions .btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.5);
}

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

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

.page-hero h1 {
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

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

.about-story {
    padding: 5rem 1.5rem;
}

.story-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.story-text {
    flex: 1 1 450px;
}

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

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

.story-image {
    flex: 1 1 350px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

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

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

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

.value-card {
    flex: 1 1 220px;
    background: var(--color-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

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

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

.about-team {
    padding: 5rem 1.5rem;
}

.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: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.team-member {
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
}

.member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--color-bg-alt);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.member-role {
    display: block;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.about-space {
    background: var(--color-bg-dark);
    padding: 5rem 1.5rem;
}

.about-space {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.space-content {
    flex: 1 1 400px;
}

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

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

.space-features {
    list-style: none;
}

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

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

.space-gallery {
    flex: 1 1 350px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.space-gallery img {
    border-radius: var(--radius-md);
    height: 200px;
    object-fit: cover;
}

.about-cta {
    padding: 5rem 1.5rem;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-bg-alt);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
}

.cta-box h2 {
    margin-bottom: 1rem;
}

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

.services-intro {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--color-text-light);
}

.service-detail {
    padding: 4rem 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-alt {
    background: var(--color-bg-alt);
    max-width: 100%;
}

.service-detail-alt > * {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.service-detail-icon {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

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

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

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

.service-description h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-includes {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
}

.service-includes li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--color-text-light);
}

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

.pricing-table {
    background: var(--color-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
}

.pricing-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--color-border);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row span {
    flex: 1 1 150px;
    padding: 1rem 1.25rem;
}

.pricing-row span:first-child {
    flex: 2 1 300px;
    font-weight: 500;
}

.pricing-row-header {
    background: var(--color-primary);
    color: white;
}

.pricing-row-header span {
    font-weight: 600;
    font-size: 0.875rem;
}

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

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

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

.services-cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.services-cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

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

.services-cta-buttons .btn-secondary {
    border-color: white;
    color: white;
}

.services-cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--color-primary);
}

.contact-main {
    padding: 4rem 1.5rem;
}

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

.contact-info {
    flex: 1 1 350px;
}

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

.contact-block h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

.contact-block address {
    font-style: normal;
    color: var(--color-text-light);
    line-height: 1.8;
}

.contact-email {
    font-size: 1.125rem;
    font-weight: 600;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 0.75rem;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 0.5rem 0;
    color: var(--color-text-light);
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--color-text);
}

.contact-map {
    flex: 1 1 400px;
}

.map-placeholder {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 2rem;
}

.map-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem 1.5rem 1rem;
}

.map-overlay p {
    color: white;
    font-weight: 600;
}

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

.directions h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.direction-item {
    margin-bottom: 1rem;
}

.direction-item:last-child {
    margin-bottom: 0;
}

.direction-item strong {
    display: block;
    font-size: 0.875rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

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

.contact-faq {
    background: var(--color-bg-alt);
    padding: 4rem 1.5rem;
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-grid .faq-item {
    flex: 1 1 400px;
}

.contact-cta {
    padding: 4rem 1.5rem;
}

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

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

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

.thanks-content h1 {
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

.thanks-greeting {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

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

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

.thanks-service span {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.thanks-service strong {
    font-size: 1.125rem;
    color: var(--color-primary);
}

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

.thanks-info h2 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

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

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

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

.legal-page {
    padding: 3rem 1.5rem 5rem;
}

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

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

.legal-updated {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary-dark);
}

.legal-section h3 {
    font-size: 1rem;
    margin: 1.5rem 0 0.75rem;
}

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

.legal-section ul,
.legal-section ol {
    color: var(--color-text-light);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section ul ul,
.legal-section ol ul {
    margin-top: 0.5rem;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.9375rem;
}

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: transform var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

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

    .trust-container {
        gap: 2rem;
    }

    .trust-item {
        flex: 1 1 120px;
    }

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

    .pricing-row span {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--color-border);
    }

    .pricing-row span:last-child {
        border-bottom: none;
    }

    .pricing-row-header {
        display: none;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }

    .sticky-cta .btn {
        width: 100%;
    }

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

    .gallery-item-large img {
        height: 200px;
    }
}

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

    .btn {
        padding: 0.75rem 1.5rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .trust-number {
        font-size: 2rem;
    }

    .member-photo {
        width: 140px;
        height: 140px;
    }
}
