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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #FAFAF8;
}

.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #2D5F3F;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 12px;
    background: #F0F0E8;
    border-radius: 20px;
}

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

.nav-links a {
    text-decoration: none;
    color: #4A4A4A;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2D5F3F;
}

.hero-visual {
    position: relative;
    height: 85vh;
    margin-top: 0;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 700px;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-overlay h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtext {
    font-size: 19px;
    line-height: 1.5;
    font-weight: 400;
}

.story-narrow {
    max-width: 680px;
    margin: 100px auto;
    padding: 0 30px;
}

.story-content h2 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #2C2C2C;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #4A4A4A;
}

.inline-image {
    margin: 50px 0;
    border-radius: 8px;
    overflow: hidden;
}

.inline-image img {
    width: 100%;
    height: auto;
    display: block;
}

.insight-block {
    background: linear-gradient(135deg, #2D5F3F 0%, #3A7451 100%);
    color: #FFFFFF;
    padding: 90px 30px;
    margin: 80px 0;
}

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

.insight-container h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.insight-container p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.citation {
    color: #A8D5BA;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #FFFFFF;
}

.problem-amplification {
    margin: 100px 0;
    padding: 0 30px;
}

.split-layout {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #2C2C2C;
}

.split-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.split-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

.trust-building {
    background: #F5F3ED;
    padding: 80px 30px;
    margin: 80px 0;
}

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

.centered-content h2 {
    font-size: 35px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #2C2C2C;
}

.centered-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.testimonials-inline {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 30px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #FFFFFF;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: #4A4A4A;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #2D5F3F;
    font-weight: 600;
}

.benefits-reveal {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px;
}

.benefits-reveal h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 50px;
    text-align: center;
    color: #2C2C2C;
}

.benefits-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
    background: #FFFFFF;
    padding: 40px 30px;
    border-left: 4px solid #2D5F3F;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2D5F3F;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4A4A4A;
}

.services-showcase {
    background: #FFFFFF;
    padding: 100px 30px;
    margin: 80px 0;
}

.services-showcase h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 18px;
    color: #4A4A4A;
}

.services-flow {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 40px;
    background: #FAFAF8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

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

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2D5F3F;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #4A4A4A;
}

.service-details {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2D5F3F;
    margin-bottom: 25px;
}

.btn-select-service {
    background: #2D5F3F;
    color: #FFFFFF;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background: #3A7451;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 63, 0.3);
}

.form-section {
    background: linear-gradient(135deg, #F5F3ED 0%, #E8E5D8 100%);
    padding: 100px 30px;
    margin: 80px 0;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2C2C2C;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: #4A4A4A;
    margin-bottom: 40px;
}

.booking-form {
    background: #FFFFFF;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border: 2px solid #E0E0D8;
    border-radius: 6px;
    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: #2D5F3F;
}

.form-group input[readonly] {
    background: #F5F3ED;
    cursor: not-allowed;
}

.highlight-field {
    animation: highlight 0.5s ease;
}

@keyframes highlight {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.btn-submit {
    width: 100%;
    background: #2D5F3F;
    color: #FFFFFF;
    border: none;
    padding: 16px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #3A7451;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 95, 63, 0.3);
}

.scientific-references {
    max-width: 900px;
    margin: 80px auto;
    padding: 40px;
    background: #F9F9F6;
    border-left: 4px solid #2D5F3F;
}

.scientific-references h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2D5F3F;
}

.scientific-references ol {
    margin-left: 20px;
}

.scientific-references li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #4A4A4A;
}

.scientific-references a {
    color: #2D5F3F;
    text-decoration: none;
    font-weight: 600;
}

.scientific-references a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 30px;
}

.disclaimer-box {
    background: #FFF9E6;
    border: 2px solid #E6D89A;
    padding: 30px;
    border-radius: 8px;
}

.disclaimer-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #4A4A4A;
}

.site-footer {
    background: #2C2C2C;
    color: #CCCCCC;
    padding: 60px 30px 30px;
    margin-top: 100px;
}

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #A8D5BA;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4A4A4A;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.98);
    color: #FFFFFF;
    padding: 25px 30px;
    z-index: 10000;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

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

.btn-primary {
    background: #2D5F3F;
    color: #FFFFFF;
    border: none;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #3A7451;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #FFFFFF;
    color: #2C2C2C;
    transform: translateY(-2px);
}

.page-header {
    max-width: 900px;
    margin: 120px auto 60px;
    padding: 0 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.page-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
}

.about-story {
    margin: 80px 0;
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-image-left {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.story-image-left img {
    width: 100%;
    height: auto;
    display: block;
}

.story-text-right {
    flex: 1;
}

.story-text-right h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2C2C2C;
}

.story-text-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.mission-section {
    background: #F5F3ED;
    padding: 80px 30px;
}

.centered-content-wide {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.centered-content-wide h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2C2C2C;
}

.centered-content-wide p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.values-section {
    max-width: 1100px;
    margin: 100px auto;
    padding: 0 30px;
}

.values-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #2C2C2C;
}

.values-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-box {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.value-large {
    flex: 2;
    min-width: 320px;
}

.value-small {
    flex: 1;
    min-width: 280px;
}

.value-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2D5F3F;
}

.value-box p {
    font-size: 16px;
    line-height: 1.7;
    color: #4A4A4A;
}

.team-intro {
    background: linear-gradient(135deg, #2D5F3F 0%, #3A7451 100%);
    color: #FFFFFF;
    padding: 80px 30px;
    margin: 80px 0;
}

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

.team-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

.team-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.impact-section {
    margin: 100px 0;
}

.impact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.impact-text {
    flex: 1;
}

.impact-text h2 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #2C2C2C;
}

.impact-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.impact-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.impact-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-about {
    margin: 80px 0;
}

.cta-box-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #F5F3ED;
    padding: 60px 40px;
    border-radius: 12px;
}

.cta-box-centered h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.cta-box-centered p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4A4A4A;
}

.services-detail {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detail-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
}

.service-detail-layout {
    display: flex;
    gap: 50px;
}

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

.service-detail-image {
    flex: 1;
    min-width: 400px;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2D5F3F;
}

.service-description {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #4A4A4A;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.service-features ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-features li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #4A4A4A;
}

.service-note {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin-top: 15px;
}

.service-price-large {
    font-size: 40px;
    font-weight: 700;
    color: #2D5F3F;
    margin: 25px 0;
}

.services-faq {
    background: #F5F3ED;
    padding: 80px 30px;
    margin: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2C2C2C;
}

.faq-item {
    background: #FFFFFF;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2D5F3F;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4A4A4A;
}

.contact-info-section {
    margin: 80px 0;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
}

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

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2D5F3F;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4A4A4A;
}

.contact-map-placeholder {
    flex: 1;
    min-height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.map-overlay {
    color: #2C2C2C;
}

.map-overlay p {
    font-size: 18px;
    margin-bottom: 10px;
}

.map-note {
    font-size: 15px;
    color: #666;
}

.contact-additional {
    background: #F5F3ED;
    padding: 80px 30px;
}

.process-steps {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 50px auto 0;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2D5F3F;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #4A4A4A;
}

.process-step a {
    color: #2D5F3F;
    text-decoration: none;
}

.process-step a:hover {
    text-decoration: underline;
}

.contact-visit {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 30px;
}

.visit-box {
    background: #FFFFFF;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
}

.visit-box h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2D5F3F;
}

.visit-box p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.contact-cta {
    margin: 80px 0;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 30px 80px;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2D5F3F;
}

.thanks-message {
    background: #F5F3ED;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-message p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.thanks-list {
    margin-left: 25px;
    margin-bottom: 20px;
}

.thanks-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4A4A4A;
}

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

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.thanks-next-steps p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #4A4A4A;
}

.thanks-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.thanks-info-box {
    background: #FFF9E6;
    border: 2px solid #E6D89A;
    padding: 25px;
    border-radius: 8px;
}

.thanks-info-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #4A4A4A;
    margin: 0;
}

.legal-page {
    padding: 120px 30px 80px;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.last-updated {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2D5F3F;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2C2C2C;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4A4A4A;
}

.legal-container ul,
.legal-container ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #4A4A4A;
}

.legal-container a {
    color: #2D5F3F;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th {
    background: #2D5F3F;
    color: #FFFFFF;
    padding: 15px;
    text-align: left;
    font-size: 15px;
}

.cookies-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #E0E0D8;
    font-size: 14px;
    color: #4A4A4A;
}

.cookies-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .nav-container {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links {
        gap: 15px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-subtext {
        font-size: 16px;
    }

    .split-layout,
    .story-layout,
    .impact-layout,
    .contact-layout {
        flex-direction: column;
    }

    .service-card,
    .service-card:nth-child(even),
    .service-detail-layout,
    .service-detail-layout.reverse {
        flex-direction: column;
    }

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

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

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

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

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

    .values-asymmetric {
        flex-direction: column;
    }

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

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

    .booking-form {
        padding: 30px;
    }
}