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

:root {
    --primary-color: #2E7D32;
    --primary-dark: #1B5E20;
    --secondary-color: #558B2F;
    --accent-color: #FFA726;
    --text-dark: #212121;
    --text-medium: #424242;
    --text-light: #757575;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.hero-split {
    padding: 80px 0;
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

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

.btn-primary-large {
    display: inline-block;
    padding: 20px 48px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
    font-size: 18px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

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

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

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-image-left,
.split-image-right {
    flex: 1;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.split-text-left,
.split-text-right {
    flex: 1;
}

.split-text-left h2,
.split-text-right h2 {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.split-text-left p,
.split-text-right p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    margin-top: 10px;
}

.link-arrow:hover {
    text-decoration: underline;
}

.intro-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.values-block {
    padding: 100px 0;
}

.value-cards {
    display: flex;
    gap: 40px;
}

.value-card {
    flex: 1;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

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

.services-showcase {
    padding: 100px 0;
    background: var(--bg-white);
}

.service-preview {
    margin: 32px 0;
}

.service-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

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

.testimonial-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonial-grid {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
}

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

.testimonial-author {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.cta-split {
    padding: 100px 0;
}

.split-cta-left {
    flex: 1;
}

.split-cta-left h2 {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.split-cta-left p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
}

.split-form-right {
    flex: 1;
}

.booking-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
}

.booking-form h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.why-choose {
    padding: 100px 0;
    background: var(--bg-light);
}

.why-choose h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

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

.reason-item {
    flex: 0 0 calc(50% - 20px);
}

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

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

.final-cta {
    padding: 120px 0;
    background: var(--primary-color);
    color: var(--bg-white);
}

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

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--bg-white);
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--bg-white);
}

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

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

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

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

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #B0B0B0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    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: 30px;
}

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

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

.btn-cookie:first-child:hover {
    background: var(--primary-dark);
}

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

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

.page-header {
    padding: 80px 0 60px;
    background: var(--bg-light);
    text-align: center;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 0;
}

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

.service-split:last-child {
    margin-bottom: 0;
}

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

.service-content {
    flex: 1;
}

.service-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-content h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

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

.service-description {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.service-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-medium);
}

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

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

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.service-comparison {
    padding: 80px 0;
    background: var(--bg-light);
}

.comparison-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.comparison-grid {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    flex: 1;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    text-align: center;
}

.comparison-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.comparison-card p {
    font-size: 16px;
    color: var(--text-medium);
}

.booking-section {
    padding: 100px 0;
}

.booking-wrapper {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-info {
    flex: 1;
}

.booking-info h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.booking-info p {
    font-size: 18px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
}

.booking-benefits {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 8px;
}

.booking-benefits p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.booking-benefits ol {
    margin-left: 20px;
}

.booking-benefits ol li {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.booking-form-container {
    flex: 1;
}

.about-hero {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-hero-text p {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.7;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.story-section {
    padding: 100px 0;
}

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

.story-content h2 {
    font-size: 42px;
    margin-bottom: 32px;
}

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

.values-detailed {
    padding: 100px 0;
    background: var(--bg-light);
}

.values-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.values-text h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.value-item {
    margin-bottom: 36px;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

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

.team-section {
    padding: 100px 0;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.team-grid {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.team-role {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

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

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

.approach-text h2 {
    font-size: 42px;
    margin-bottom: 32px;
}

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

.approach-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.credentials-section {
    padding: 100px 0;
}

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

.credential-item {
    flex: 0 0 calc(50% - 20px);
    padding: 32px;
    background: var(--bg-light);
    border-radius: 8px;
}

.credential-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.commitment-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.commitment-content h2 {
    font-size: 42px;
    margin-bottom: 32px;
}

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

.commitment-content .btn-primary {
    margin-top: 20px;
}

.contact-header {
    padding: 80px 0 60px;
    background: var(--bg-light);
    text-align: center;
}

.contact-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 20px;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

.contact-main {
    padding: 80px 0;
}

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

.contact-info-section h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

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

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

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

.info-block a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

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

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: var(--bg-white);
    padding: 20px;
    text-align: center;
}

.map-overlay p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.faq-contact {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.faq-item {
    flex: 0 0 calc(50% - 20px);
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.directions-section {
    padding: 100px 0;
}

.directions-content {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.direction-item {
    flex: 1;
}

.direction-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.contact-cta {
    padding: 100px 0;
    background: var(--bg-light);
}

.thanks-hero {
    padding: 100px 0;
    background: var(--bg-light);
}

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

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.thanks-main {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-confirmation {
    padding: 24px;
    background: var(--bg-white);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps {
    padding: 100px 0;
}

.steps-grid {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.step-item {
    flex: 1;
    text-align: center;
}

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

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

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

.thanks-info {
    padding: 100px 0;
    background: var(--bg-light);
}

.thanks-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

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

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.thanks-contact {
    padding: 100px 0;
}

.contact-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 48px;
    background: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

.contact-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

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

.contact-email {
    margin: 24px 0;
}

.contact-email a {
    font-size: 24px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

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

.thanks-explore {
    padding: 100px 0;
    background: var(--bg-light);
}

.service-suggestions {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 40px auto 0;
}

.suggestion-card {
    flex: 1;
    padding: 32px;
    background: var(--bg-white);
    border-radius: 8px;
}

.suggestion-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

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

.legal-content {
    padding: 80px 0;
}

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

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

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

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

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

.legal-section ul,
.legal-section ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

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

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

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

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

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

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

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-content,
    .split-layout,
    .service-split,
    .booking-wrapper,
    .testimonial-grid,
    .team-grid,
    .steps-grid,
    .service-suggestions,
    .comparison-grid,
    .directions-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-text h1,
    .page-header h1,
    .about-hero-text h1,
    .contact-header h1 {
        font-size: 36px;
    }

    .split-text-left h2,
    .split-text-right h2,
    .service-content h2,
    .booking-info h2,
    .contact-info-section h2,
    .story-content h2,
    .values-text h2,
    .approach-text h2,
    .commitment-content h2,
    .cta-content h2 {
        font-size: 32px;
    }

    .value-cards,
    .reasons-grid,
    .credentials-grid,
    .faq-grid {
        flex-direction: column;
    }

    .reason-item,
    .credential-item,
    .faq-item {
        flex: 0 0 100%;
    }

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

    .map-placeholder {
        height: 400px;
    }
}