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

:root {
    --primary-color: #d4a574;
    --secondary-color: #8b6f47;
    --dark-color: #2c2c2c;
    --light-color: #f8f6f3;
    --white: #ffffff;
    --gray: #666666;
    --light-gray: #e5e5e5;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.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;
    margin: 0;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    background-color: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

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

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

.hero-split {
    display: flex;
    min-height: 90vh;
}

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

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

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

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

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

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

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.intro-section {
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.split-content {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.content-left,
.content-right {
    flex: 1;
}

.content-left h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.content-right p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 30px;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.link-arrow::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.link-arrow:hover::after {
    margin-left: 15px;
}

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

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

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 20px;
    color: var(--gray);
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    background-color: var(--white);
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-info {
    padding: 30px;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.service-info p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-tag {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 18px;
}

.cta-center {
    text-align: center;
    margin-top: 60px;
}

.benefits-split {
    display: flex;
    min-height: 700px;
}

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

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

.benefits-content {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefits-content h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefits-list li {
    margin-bottom: 30px;
    padding-left: 30px;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
}

.benefits-list strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
}

.benefits-list span {
    color: var(--gray);
    line-height: 1.6;
}

.testimonials {
    padding: 100px 60px;
    background-color: var(--dark-color);
    color: var(--white);
}

.testimonials h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
}

.testimonials-flex {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 27px);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    min-width: 280px;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.booking-section {
    padding: 100px 60px;
    background-color: var(--light-color);
}

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

.booking-left,
.booking-right {
    flex: 1;
}

.booking-left h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.booking-left p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
}

.booking-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

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

.trust-section {
    padding: 80px 60px;
    background-color: var(--primary-color);
    text-align: center;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.trust-content p {
    font-size: 20px;
    color: var(--dark-color);
    max-width: 800px;
    margin: 0 auto;
}

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

.sticky-btn {
    display: block;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: scale(1.05);
}

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col p {
    color: var(--light-gray);
    line-height: 1.8;
}

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

.footer-col ul li a {
    color: var(--light-gray);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

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

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

.page-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 20px;
    color: var(--gray);
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

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

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

.service-detail-left {
    flex: 1;
}

.service-detail-left img {
    width: 100%;
    border-radius: 8px;
}

.service-detail-right {
    flex: 1;
}

.service-detail-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

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

.service-detail-right p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 30px;
}

.service-includes {
    margin-bottom: 30px;
}

.service-includes li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    color: var(--gray);
}

.service-includes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
}

.service-duration {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 30px;
}

.services-cta {
    background-color: var(--light-color);
    padding: 80px 60px;
    text-align: center;
}

.services-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
}

.about-intro-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-left {
    flex: 1;
}

.about-left h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.about-left p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.about-right {
    flex: 1;
}

.about-right img {
    border-radius: 8px;
}

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

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

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

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

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

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

.story-section {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 48px;
    margin-bottom: 40px;
    text-align: center;
}

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

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

.approach-image {
    flex: 1;
}

.approach-image img {
    border-radius: 8px;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.approach-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.why-us-section {
    background-color: var(--light-color);
    padding: 100px 60px;
}

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

.why-us-flex {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

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

.why-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.why-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
}

.cta-about {
    padding: 100px 60px;
    text-align: center;
}

.cta-about h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
}

.contact-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px;
}

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

.contact-info {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
}

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

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

.contact-note a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-map {
    flex: 1;
    position: relative;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
}

.how-to-find {
    background-color: var(--light-color);
    padding: 100px 60px;
}

.how-to-find h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
}

.directions-flex {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.direction-card {
    flex: 1 1 calc(33.333% - 27px);
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    min-width: 250px;
}

.direction-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.direction-card p {
    color: var(--gray);
    line-height: 1.6;
}

.faq-section {
    padding: 100px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

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

.cta-contact {
    background-color: var(--primary-color);
    padding: 80px 60px;
    text-align: center;
}

.cta-contact h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.cta-contact p {
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 40px;
}

.thanks-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 60px;
    text-align: center;
}

.thanks-content {
    background-color: var(--light-color);
    padding: 60px;
    border-radius: 8px;
}

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

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

.thanks-lead {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 60px;
}

.thanks-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
    text-align: left;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray);
    line-height: 1.6;
}

.thanks-service {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

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

.thanks-contact {
    color: var(--gray);
}

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

.thanks-tips {
    padding: 100px 60px;
    background-color: var(--light-color);
}

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

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

.tip-card {
    flex: 1 1 calc(33.333% - 27px);
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    min-width: 250px;
}

.tip-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tip-card p {
    color: var(--gray);
    line-height: 1.7;
}

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

.legal-container {
    line-height: 1.8;
}

.legal-intro {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 8px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-container p {
    margin-bottom: 20px;
    color: var(--gray);
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container ul li {
    list-style: disc;
    margin-bottom: 10px;
    color: var(--gray);
}

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

.legal-update {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid var(--light-gray);
    font-style: italic;
    color: var(--gray);
}

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

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

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

    .split-content,
    .booking-split,
    .about-intro-split,
    .approach-split,
    .contact-split {
        flex-direction: column;
        gap: 40px;
    }

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

    .nav-container {
        padding: 0 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 20px;
    }

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

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .section-header h2,
    .testimonials h2,
    .values-section h2,
    .story-content h2,
    .why-us-section h2,
    .how-to-find h2,
    .faq-section h2,
    .page-hero-content h1 {
        font-size: 36px;
    }

    .services-grid,
    .testimonials-flex,
    .values-grid,
    .why-us-flex,
    .directions-flex,
    .tips-grid {
        gap: 20px;
    }

    .service-card,
    .testimonial-card,
    .value-card,
    .why-item,
    .direction-card,
    .tip-card {
        flex: 1 1 100%;
    }

    .intro-section,
    .services-preview,
    .booking-section,
    .testimonials,
    .trust-section,
    .services-detailed,
    .about-intro-split,
    .values-section,
    .story-section,
    .approach-split,
    .why-us-section,
    .cta-about,
    .contact-main,
    .how-to-find,
    .faq-section,
    .cta-contact,
    .thanks-page,
    .thanks-tips,
    .legal-content {
        padding: 60px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .thanks-content {
        padding: 40px 20px;
    }

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

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