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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b4513;
    --accent-color: #d4a574;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f6f3;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

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

.main-nav {
    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;
}

.nav-container {
    max-width: 1400px;
    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;
    letter-spacing: -0.5px;
}

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

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background: var(--light-bg);
}

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

.hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

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

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

.cta-primary:hover {
    background: #1e4538;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44,95,79,0.3);
}

.intro-section {
    padding: 100px 20px;
    background: var(--white);
}

.intro-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.split-content {
    display: flex;
    min-height: 600px;
}

.split-content-reverse {
    display: flex;
    flex-direction: row-reverse;
    min-height: 600px;
}

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

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

.split-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: var(--light-bg);
}

.split-text h3 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.cta-inline {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.cta-inline:hover {
    border-bottom-color: var(--accent-color);
    color: var(--accent-color);
}

.services-preview {
    padding: 120px 20px;
    background: var(--white);
}

.services-preview h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.service-card p {
    padding: 0 25px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.service-price {
    padding: 0 25px 20px;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #1e4538;
}

.quote-section {
    padding: 100px 20px;
    background: var(--primary-color);
    color: var(--white);
}

.quote-section blockquote {
    font-size: 28px;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding: 0;
    border: none;
}

.quote-section cite {
    display: block;
    margin-top: 30px;
    font-size: 18px;
    font-style: normal;
    opacity: 0.9;
}

.testimonials-section {
    padding: 120px 20px;
    background: var(--light-bg);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 70px;
    font-weight: 700;
}

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

.testimonial {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    background: var(--white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.testimonial cite {
    font-weight: 600;
    color: var(--text-dark);
    font-style: normal;
}

.why-us-section {
    padding: 120px 20px;
    background: var(--white);
}

.why-us-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 70px;
    font-weight: 700;
}

.features-split {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.feature {
    flex: 1 1 calc(50% - 25px);
    min-width: 280px;
}

.feature h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.cta-section {
    padding: 100px 20px;
    background: var(--dark-bg);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.cta-large:hover {
    background: #1e4538;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(44,95,79,0.4);
}

.cta-secondary {
    display: inline-block;
    padding: 20px 50px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--dark-bg);
}

.form-section {
    padding: 120px 20px;
    background: var(--light-bg);
}

.form-section h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-section > div > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    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);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #1e4538;
}

.final-push {
    padding: 100px 20px;
    background: var(--primary-color);
    text-align: center;
    color: var(--white);
}

.final-push h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-push p {
    font-size: 19px;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
    font-size: 14px;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta-btn {
    display: inline-block;
    padding: 16px 30px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 20px rgba(139,69,19,0.4);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    background: #6d3610;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139,69,19,0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: var(--white);
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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;
    gap: 30px;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: #1e4538;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

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

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

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

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

.story-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

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

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

.team-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 70px;
    font-weight: 700;
}

.team-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

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

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

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

.values-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 70px;
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(50% - 25px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.services-full {
    padding: 80px 20px;
}

.service-detail {
    margin-bottom: 100px;
}

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

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

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

.service-image-large img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.service-meta span {
    padding: 6px 16px;
    background: var(--light-bg);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.service-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

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

.service-includes {
    list-style: none;
    margin: 30px 0;
}

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

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

.service-pricing {
    margin: 30px 0;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

.info-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.info-block {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

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

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

.contact-section {
    padding: 80px 20px;
}

.contact-split {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 50px;
    font-weight: 700;
}

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

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

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

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.contact-map {
    flex: 1;
}

.contact-map h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 700;
}

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
}

.map-overlay p {
    font-size: 16px;
    line-height: 1.6;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

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

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

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

.thanks-section {
    padding: 150px 20px 100px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
}

.thanks-content h1 {
    font-size: 46px;
    margin-bottom: 15px;
    font-weight: 800;
}

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

.thanks-info {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.thanks-info p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
}

.thanks-next {
    margin-bottom: 50px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.next-steps {
    padding-left: 20px;
}

.next-steps li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 12px;
}

.thanks-cta {
    margin-bottom: 40px;
}

.thanks-cta p {
    font-size: 16px;
    color: var(--text-light);
}

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

.thanks-contact {
    font-size: 15px;
    color: var(--text-light);
}

.thanks-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.social-proof {
    padding: 80px 20px;
    background: var(--light-bg);
}

.social-proof h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

.stats-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

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

.legal-content h2 {
    font-size: 32px;
    margin: 50px 0 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

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

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        flex: none;
        width: 100%;
    }

    .hero-right {
        height: 400px;
    }

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

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

    .split-image {
        height: 400px;
    }

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-lead {
        font-size: 17px;
    }

    .hero-left {
        padding: 60px 30px;
    }

    .split-text {
        padding: 60px 30px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonial {
        flex: 1 1 100%;
    }

    .feature,
    .value-item,
    .info-block {
        flex: 1 1 100%;
    }

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

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

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

    .stats-grid {
        gap: 40px;
    }
}
