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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #8b7355;
    --accent-color: #d4af37;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.96);
    color: var(--bg-white);
    padding: 24px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary-color);
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-cookie {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-cookie.accept:hover {
    background-color: #3a7a3c;
}

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

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

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

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo h1 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

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

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

.main-nav a:hover::after {
    width: 100%;
}

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-light);
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.hero-text {
    max-width: 520px;
}

.hero-text h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #3a7a3c;
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    background-color: var(--secondary-color);
}

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

.intro-asymmetric {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-block-right {
    flex: 1.2;
    padding-right: 40px;
}

.intro-block-right h3 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 600;
}

.intro-block-right p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
}

.intro-block-left {
    flex: 0.8;
}

.intro-block-left img {
    border-radius: 2px;
}

.services-split {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

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

.section-header-center h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.section-header-center p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-row {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 4px;
}

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

.service-visual {
    flex: 0.9;
}

.service-visual img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 2px;
}

.service-details {
    flex: 1.1;
    padding: 20px;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-details p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0;
}

.select-service {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #3a7a3c;
    transform: translateY(-2px);
}

.booking-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.booking-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.booking-text {
    flex: 1;
    padding-top: 20px;
}

.booking-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.booking-text p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.booking-form-wrapper {
    flex: 1;
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: inherit;
}

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

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

.btn-submit {
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #3a7a3c;
    transform: translateY(-2px);
}

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

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.philosophy-left {
    flex: 0.8;
}

.philosophy-left img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 2px;
}

.philosophy-right {
    flex: 1.2;
    padding-left: 20px;
}

.philosophy-right h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

.philosophy-right p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    font-style: italic;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-light);
    padding: 60px 40px 30px;
}

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

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

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

.footer-column p,
.footer-column li {
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #3a3a3a;
    text-align: center;
}

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

.page-hero-split {
    display: flex;
    min-height: 450px;
    background-color: var(--bg-light);
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.hero-content-left h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-content-left p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
}

.hero-image-right {
    flex: 1;
}

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

.story-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-block {
    flex: 1.2;
}

.story-block h2 {
    font-size: 34px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.story-visual {
    flex: 0.8;
}

.story-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 2px;
}

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

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header h2 {
    font-size: 38px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.team-section-split {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

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

.team-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.team-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

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

.team-member {
    margin-bottom: 50px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.member-info h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.member-role {
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.member-info p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

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

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

.approach-text {
    flex: 1.2;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.approach-image {
    flex: 0.8;
}

.approach-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 2px;
}

.commitment-section {
    padding: 100px 40px;
    background-color: var(--bg-white);
}

.commitment-content {
    max-width: 1200px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

.commitment-blocks {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.commitment-item {
    flex: 1;
    min-width: 280px;
    padding: 36px;
    background-color: var(--bg-light);
    border-radius: 4px;
    border-top: 4px solid var(--primary-color);
}

.commitment-item h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.commitment-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.services-hero {
    padding: 100px 40px 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.services-hero-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.services-hero-content p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 60px 40px 100px;
    background-color: var(--bg-white);
}

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

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

.service-image-left,
.service-image-right {
    flex: 0.85;
}

.service-image-left img,
.service-image-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 2px;
}

.service-content-right,
.service-content-left {
    flex: 1.15;
    padding: 30px;
}

.service-content-right h2,
.service-content-left h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-content-right p,
.service-content-left p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 28px 0;
}

.price-label {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.booking-cta-section {
    padding: 80px 40px;
    background-color: var(--bg-light);
    text-align: center;
}

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

.booking-cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.booking-cta-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 42px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #3a7a3c;
    transform: translateY(-2px);
}

.contact-hero {
    padding: 100px 40px 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-hero-content p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.contact-main-split {
    padding: 60px 40px 100px;
    background-color: var(--bg-white);
}

.contact-main-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-left {
    flex: 1.2;
}

.info-block {
    margin-bottom: 50px;
}

.info-block h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

.access-info {
    margin-top: 16px;
    padding: 16px;
    background-color: var(--bg-light);
    border-radius: 4px;
    font-size: 14px;
}

.hours-list {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 4px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.day {
    font-weight: 600;
    color: var(--text-dark);
}

.time {
    color: var(--text-light);
}

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

.email-display {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.response-time {
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.contact-visual-right {
    flex: 0.8;
}

.contact-visual-right img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    border-radius: 2px;
}

.visual-caption {
    margin-top: 20px;
    padding: 16px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.visual-caption p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
}

.practical-info {
    padding: 80px 40px;
    background-color: var(--bg-light);
}

.practical-content {
    max-width: 1200px;
    margin: 0 auto;
}

.practical-content h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 700;
}

.practical-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.practical-item {
    flex: 1;
    min-width: 260px;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 4px;
}

.practical-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.practical-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-cta {
    padding: 80px 40px;
    background-color: var(--bg-white);
    text-align: center;
}

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

.contact-cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.thanks-section {
    padding: 120px 40px;
    background-color: var(--bg-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.booking-summary {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.booking-summary h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 600;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.summary-label {
    font-weight: 600;
    color: var(--text-dark);
}

.summary-value {
    color: var(--text-light);
}

.next-steps {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 4px;
    margin-bottom: 40px;
    text-align: left;
    border: 1px solid var(--border-color);
}

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

.steps-list {
    list-style: decimal;
    padding-left: 24px;
}

.steps-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

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

.btn-primary {
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 16px 36px;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.additional-info {
    max-width: 600px;
    margin: 0 auto;
}

.additional-info p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

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

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

.legal-container h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
}

.legal-intro {
    margin-bottom: 50px;
    padding: 24px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
}

.legal-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-section h3 {
    font-size: 20px;
    margin: 24px 0 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-section h4 {
    font-size: 18px;
    margin: 20px 0 12px;
    color: var(--text-dark);
    font-weight: 600;
}

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

.legal-section ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 8px;
}

.legal-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

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

.legal-section a:hover {
    color: #3a7a3c;
}

.legal-update {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.legal-update p {
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

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

    .intro-content,
    .story-container,
    .philosophy-content,
    .approach-split,
    .contact-main-split {
        flex-direction: column;
        gap: 40px;
    }

    .service-row,
    .service-item-split {
        flex-direction: column;
        gap: 30px;
    }

    .service-row.reverse,
    .service-item-split.reverse {
        flex-direction: column;
    }

    .booking-container {
        flex-direction: column;
        gap: 40px;
    }

    .values-grid,
    .commitment-blocks,
    .practical-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-text h2,
    .hero-content-left h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 32px;
    }

    .section-header-center h2,
    .values-header h2,
    .team-intro h2,
    .commitment-content h2,
    .booking-cta-content h2,
    .contact-cta-content h2,
    .philosophy-right h2,
    .approach-text h2 {
        font-size: 28px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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

    .btn-cookie {
        width: 100%;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}