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

:root {
    --primary-color: #d4a574;
    --secondary-color: #8b6f5a;
    --dark-color: #2c2421;
    --light-color: #f9f7f5;
    --text-color: #4a4a4a;
    --accent-color: #c89b6d;
    --white: #ffffff;
    --gray-light: #e8e4e0;
    --gray-medium: #b8b3ae;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.nav-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

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

.hero-split {
    display: flex;
    min-height: 100vh;
    margin-top: 70px;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
    background: var(--light-color);
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-primary-large {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.3rem 3rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.15rem;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--secondary-color);
    padding: 0.9rem 2rem;
    border: 2px solid var(--secondary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.intro-dual {
    display: flex;
    min-height: 70vh;
}

.intro-image {
    flex: 1;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 7%;
    background: var(--white);
}

.intro-text h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
}

.services-preview {
    padding: 6rem 5%;
    background: var(--light-color);
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

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

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-visual {
    flex: 1;
    min-height: 300px;
}

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

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

.service-info h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.why-us-asymmetric {
    display: flex;
    min-height: 75vh;
}

.why-content {
    flex: 1.2;
    padding: 5rem 7%;
    background: var(--dark-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-content h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.why-point {
    display: flex;
    gap: 1.5rem;
}

.why-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.why-text h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.why-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #d8d8d8;
}

.why-visual {
    flex: 0.8;
    overflow: hidden;
}

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

.testimonials-stacked {
    padding: 6rem 5%;
    background: var(--white);
    text-align: center;
}

.testimonials-stacked h2 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 4rem;
}

.testimonial-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial-item {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-item p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
}

.booking-section {
    padding: 6rem 5%;
    background: var(--light-color);
}

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

.booking-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-info h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.booking-info p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.booking-benefits {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.booking-benefits p {
    margin-bottom: 1rem;
}

.booking-benefits ul {
    list-style: none;
    padding-left: 0;
}

.booking-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

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

.booking-form-container {
    flex: 1;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--gray-light);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.cta-final {
    padding: 6rem 5%;
    background: var(--secondary-color);
    text-align: center;
    color: var(--white);
}

.cta-final h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-final p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

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

.footer-col li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--primary-color);
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.page-hero {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    padding: 10rem 5% 5rem;
    margin-top: 70px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.story-split {
    display: flex;
    min-height: 70vh;
}

.story-text {
    flex: 1;
    padding: 5rem 7%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-text h2 {
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image {
    flex: 1;
    overflow: hidden;
}

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

.values-section {
    padding: 6rem 5%;
    background: var(--light-color);
}

.values-section h2 {
    font-size: 3rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 4rem;
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.6rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
}

.team-split {
    display: flex;
    min-height: 70vh;
}

.team-image {
    flex: 1;
    overflow: hidden;
}

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

.team-text {
    flex: 1;
    padding: 5rem 7%;
    background: var(--dark-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.team-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.philosophy-section {
    padding: 6rem 5%;
    background: var(--white);
}

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

.philosophy-content h2 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.philosophy-content p {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.cta-about,
.cta-services,
.cta-contact {
    padding: 6rem 5%;
    background: var(--primary-color);
    text-align: center;
    color: var(--white);
}

.cta-about h2,
.cta-services h2,
.cta-contact h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-about p,
.cta-services p,
.cta-contact p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.services-detailed {
    padding: 4rem 5%;
    background: var(--white);
}

.service-detail-card {
    display: flex;
    margin-bottom: 5rem;
    gap: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-savings {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-detail-content h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

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

.service-detail-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-note {
    padding: 3rem 5%;
    background: var(--light-color);
}

.note-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.note-content h3 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.note-content p {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-split {
    display: flex;
    gap: 4rem;
    padding: 4rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-info-box h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
}

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

.contact-details a:hover {
    text-decoration: underline;
}

.contact-note {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44,36,33,0.85);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.map-overlay p {
    font-size: 1.1rem;
    font-weight: 600;
}

.location-info {
    padding: 4rem 5%;
    background: var(--white);
}

.location-info h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 3rem;
}

.location-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-method {
    flex: 1;
    background: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
}

.location-method h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.location-method p {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
}

.faq-contact {
    padding: 4rem 5%;
    background: var(--light-color);
}

.faq-contact h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
}

.thanks-section {
    padding: 6rem 5% 4rem;
    background: var(--light-color);
    min-height: 60vh;
}

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

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

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

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.thanks-details {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.thanks-info h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.next-steps {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.step {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-text h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.step-text p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.7;
}

.thanks-note {
    background: #fff3cd;
    border: 1px solid #ffeb3b;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-note p {
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.7;
}

.thanks-note a {
    color: #856404;
    text-decoration: underline;
}

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

.thanks-extra {
    padding: 4rem 5%;
    background: var(--white);
}

.thanks-extra h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 3rem;
}

.tips-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tip-card {
    flex: 1;
    background: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
}

.tip-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.tip-card p {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
}

.legal-page {
    padding: 2rem 5% 4rem;
    background: var(--white);
}

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

.legal-content h1 {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.last-update {
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin: 2.5rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

.legal-content h4 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin: 1.5rem 0 0.8rem;
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

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

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

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

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-light);
    font-style: italic;
    color: var(--gray-medium);
}

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

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

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

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

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        transition: left 0.3s;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-split,
    .intro-dual,
    .why-us-asymmetric,
    .story-split,
    .team-split,
    .service-detail-card,
    .service-detail-card.reverse,
    .booking-split,
    .contact-split {
        flex-direction: column;
    }

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

    .values-grid,
    .location-grid,
    .next-steps,
    .tips-grid {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

    .service-visual {
        min-height: 250px;
    }

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

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

@media (max-width: 640px) {
    .hero-left h1,
    .page-hero-content h1 {
        font-size: 2rem;
    }

    .intro-text h2,
    .story-text h2,
    .team-text h2 {
        font-size: 2rem;
    }

    .section-header-centered h2,
    .testimonials-stacked h2,
    .values-section h2,
    .philosophy-content h2,
    .cta-final h2,
    .cta-about h2,
    .cta-services h2 {
        font-size: 2rem;
    }

    .service-price {
        font-size: 1.6rem;
    }

    .btn-primary-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}