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

:root {
    --primary-color: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #40916c;
    --accent-color: #52b788;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    --border-color: #e0e0e0;
    --white: #ffffff;
}

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

.ad-disclosure {
    background-color: var(--bg-dark);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 37px;
    z-index: 999;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

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

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

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

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

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

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    font-size: 18px;
    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);
}

.intro-section {
    padding: 80px 24px;
    background-color: var(--white);
}

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

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-medium);
    text-align: center;
}

.value-section {
    padding: 100px 24px;
}

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

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

.value-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
}

.value-item {
    flex: 1 1 300px;
    max-width: 400px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.services-visual {
    padding: 0;
}

.split-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.split-content {
    flex: 1 1 500px;
    padding: 80px 60px;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.split-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.split-image {
    flex: 1 1 500px;
    min-height: 400px;
    background-color: var(--border-color);
}

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

.text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
}

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

.services-list-section {
    padding: 100px 24px;
    background-color: var(--white);
}

.container-standard {
    max-width: 1200px;
    margin: 0 auto;
}

.services-list-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

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

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--border-color);
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 12px;
}

.form-section {
    padding: 100px 24px;
    background-color: var(--bg-light);
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-dark);
}

.booking-form {
    background-color: var(--white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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);
}

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

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

.trust-section {
    padding: 100px 24px;
}

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

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.testimonial {
    flex: 1 1 450px;
    max-width: 550px;
    background-color: var(--white);
    padding: 36px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial cite {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    font-style: normal;
}

.process-section {
    padding: 100px 24px;
    background-color: var(--white);
}

.process-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
}

.step {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
}

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

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
}

.main-footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 60px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

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

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

.footer-column ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    text-align: center;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

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

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

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

.cookie-content p {
    flex: 1 1 400px;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

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

.cookie-btn {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.cookie-btn.reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.page-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 24px;
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.header-content p {
    font-size: 20px;
    opacity: 0.9;
}

.story-section {
    padding: 80px 24px;
    background-color: var(--white);
}

.story-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 32px;
    object-fit: cover;
    background-color: var(--border-color);
}

.story-intro {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.story-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.values-section {
    padding: 100px 24px;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
}

.value-block {
    flex: 1 1 320px;
    max-width: 400px;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.value-block p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.team-section {
    padding: 80px 24px;
    background-color: var(--bg-light);
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.section-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.team-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--border-color);
}

.impact-section {
    padding: 100px 24px;
}

.impact-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
}

.stat-item {
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
}

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

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

.certifications-section {
    padding: 80px 24px;
    background-color: var(--white);
}

.certifications-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.certifications-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.cta-section {
    padding: 100px 24px;
    text-align: center;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.9);
}

.services-detail-section {
    padding: 80px 24px;
    background-color: var(--bg-light);
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.service-detail-image {
    flex: 1 1 450px;
    min-height: 400px;
    background-color: var(--border-color);
}

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

.service-detail-content {
    flex: 1 1 450px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.service-detail-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.detail-note {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
}

.pricing-info-section {
    padding: 80px 24px;
}

.pricing-info-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.pricing-info-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.pricing-factors {
    list-style: none;
    padding-left: 0;
    margin: 24px 0;
}

.pricing-factors li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.pricing-factors li:before {
    content: "•";
    color: var(--primary-color);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -2px;
}

.contact-section {
    padding: 80px 24px;
    background-color: var(--white);
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

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

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

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
}

.hours-note {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 12px;
    font-style: italic;
}

.contact-visual {
    flex: 1 1 400px;
    min-height: 500px;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-reasons-section {
    padding: 100px 24px;
}

.contact-reasons-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.reason-card {
    flex: 1 1 260px;
    background-color: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.reason-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.reason-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.response-section {
    padding: 100px 24px;
    background-color: var(--white);
}

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

.response-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
}

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

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

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
}

.faq-section {
    padding: 100px 24px;
}

.faq-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
}

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

.faq-item {
    flex: 1 1 45%;
    background-color: rgba(255,255,255,0.1);
    padding: 28px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--white);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
}

.thanks-section {
    padding: 100px 24px;
    background-color: var(--bg-light);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
    background-color: var(--white);
    padding: 60px 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.thanks-details {
    margin-bottom: 40px;
}

.service-confirmation {
    font-size: 17px;
    color: var(--text-medium);
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: 4px;
}

.next-steps {
    margin-bottom: 40px;
}

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

.steps-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

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

.step-text h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.step-text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
}

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

.primary-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

.secondary-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    font-size: 16px;
    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;
}

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

.contact-reminder {
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.contact-reminder p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.contact-reminder p:last-child {
    margin-bottom: 0;
}

.legal-page {
    padding: 80px 24px;
    background-color: var(--white);
}

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

.last-updated {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    margin: 28px 0 16px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 24px 24px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 10px;
}

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

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

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

.cookie-table td {
    font-size: 15px;
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px 24px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

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

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

    .booking-form {
        padding: 32px 24px;
    }

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

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

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

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