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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --background-light: #f8f6f4;
    --background-white: #ffffff;
    --border-color: #e0ddd9;
    --accent-color: #8b4513;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-white);
}

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

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

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

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

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

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

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

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

.btn-cookie.accept:hover {
    background-color: #234a3d;
}

.btn-cookie.reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

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

.nav-primary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

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

.nav-items a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

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

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

.nav-toggle {
    display: none;
    font-size: 28px;
    color: var(--primary-color);
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 79, 0.8) 0%, rgba(44, 95, 79, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 40px;
    text-align: center;
    color: #ffffff;
}

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

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

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #c99660;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

.intro-narrative h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.intro-narrative p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.visual-break {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: var(--background-light);
}

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

.services-intro {
    padding: 100px 20px;
    background-color: var(--background-light);
}

.section-header-offset {
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.section-header-offset h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
}

.services-grid-visual {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card-visual {
    display: flex;
    gap: 40px;
    background-color: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.service-image {
    flex: 0 0 45%;
    background-color: var(--background-light);
}

.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;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 0;
}

.btn-select-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

.booking-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--primary-color);
    text-align: center;
}

.selected-service-display {
    background-color: var(--background-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    text-align: center;
}

.selected-service-display p {
    font-size: 18px;
    margin-bottom: 8px;
}

.selected-service-display strong {
    color: var(--primary-color);
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
}

.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 textarea {
    width: 100%;
    padding: 12px 16px;
    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 textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #c99660;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.philosophy-visual {
    padding: 100px 20px;
    background-color: var(--background-white);
}

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

.split-text {
    flex: 1;
}

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

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

.link-inline {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 2px;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.link-inline:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.split-image {
    flex: 0 0 45%;
    background-color: var(--background-light);
}

.split-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.trust-indicators {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.indicators-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.indicator-item {
    text-align: center;
}

.indicator-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.indicator-item p {
    font-size: 18px;
    color: var(--text-dark);
}

.footer-main {
    background-color: var(--text-dark);
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    font-size: 14px;
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-disclaimer {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #cccccc;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #999999;
}

.page-hero-small {
    padding: 80px 20px;
    background-color: var(--background-light);
    text-align: center;
}

.page-hero-small h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-hero-small p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 20px;
    background-color: var(--background-white);
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-visual-large {
    flex: 0 0 48%;
    background-color: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
}

.service-visual-large img {
    width: 100%;
    height: 100%;
}

.service-content-detailed {
    flex: 1;
}

.service-content-detailed h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-duration {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
}

.service-content-detailed p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-features {
    list-style: none;
    margin: 24px 0;
}

.service-features li {
    font-size: 16px;
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    color: var(--text-dark);
}

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

.service-pricing-block {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

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

.page-hero-visual {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

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

.hero-overlay-dark h1 {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.hero-overlay-dark p {
    font-size: 20px;
    color: #ffffff;
    max-width: 700px;
    text-align: center;
}

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

.story-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--primary-color);
}

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

.philosophy-section-detailed {
    padding: 80px 20px;
    background-color: var(--background-light);
}

.philosophy-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.philosophy-image {
    flex: 0 0 45%;
    background-color: var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
}

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

.values-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: var(--primary-color);
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    padding: 32px;
    background-color: var(--background-light);
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.team-intro {
    padding: 80px 20px;
    background-color: var(--background-light);
}

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

.team-intro p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.location-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.location-image {
    flex: 0 0 48%;
    background-color: var(--background-light);
    border-radius: 8px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
}

.location-content {
    flex: 1;
}

.location-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

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

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

.cta-section-centered p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #c99660;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

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

.contact-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-header p {
    font-size: 20px;
    color: var(--text-light);
}

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

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

.contact-info-block h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.email-display {
    color: var(--text-light);
    font-style: italic;
}

.contact-visual {
    flex: 0 0 45%;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 24px;
}

.contact-note {
    background-color: var(--background-light);
    padding: 24px;
    border-radius: 8px;
}

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

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.directions-section {
    margin-bottom: 60px;
}

.directions-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.directions-content {
    display: flex;
    gap: 32px;
}

.direction-option {
    flex: 1;
    padding: 24px;
    background-color: var(--background-light);
    border-radius: 8px;
}

.direction-option h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.direction-option p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    padding: 24px;
    background-color: var(--background-light);
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.thanks-page {
    padding: 100px 20px;
    background-color: var(--background-white);
    min-height: 500px;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 48px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.booking-summary {
    background-color: var(--background-light);
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.booking-summary h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.booking-summary p {
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

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

.contact-reminder {
    background-color: var(--background-light);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

.contact-reminder p {
    font-size: 16px;
    color: var(--text-dark);
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #234a3d;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

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

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

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

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

@media (max-width: 1024px) {
    .service-card-visual,
    .service-card-visual:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        flex: none;
        height: 300px;
    }

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

    .service-visual-large {
        flex: none;
        width: 100%;
        height: 350px;
    }

    .split-content,
    .philosophy-split,
    .location-split {
        flex-direction: column;
    }

    .split-image,
    .philosophy-image,
    .location-image {
        flex: none;
        width: 100%;
    }

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

    .contact-visual {
        flex: none;
        width: 100%;
    }

    .directions-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-items {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background-color: var(--background-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 24px;
    }

    .nav-items.active {
        right: 0;
    }

    .nav-toggle {
        display: block;
    }

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

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

    .hero-visual {
        height: 500px;
    }

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

    .thanks-content h1 {
        font-size: 32px;
    }

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

    .indicators-grid {
        flex-direction: column;
        gap: 32px;
    }

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

    .value-card {
        flex: none;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

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

    .btn-cookie {
        width: 100%;
    }

    .service-info {
        padding: 24px;
    }

    .service-pricing-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}