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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8fb8a7;
    --accent-color: #d4a574;
    --dark-color: #1a1a1a;
    --light-color: #f8f8f6;
    --white: #ffffff;
    --gray: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--white);
    font-size: 16px;
}

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept, .btn-reject {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #1f453a;
}

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

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

.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

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

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero-split {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1f453a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.intro-split {
    padding: 5rem 2rem;
    background: var(--white);
}

.intro-split .split-image,
.intro-split .split-text {
    flex: 1;
}

.intro-split {
    display: flex;
    align-items: center;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.split-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.split-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.split-text p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.services-preview {
    padding: 6rem 2rem;
    background: var(--light-color);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
}

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

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    background: var(--primary-color);
    color: var(--white);
}

.service-card.featured h3,
.service-card.featured .price {
    color: var(--white);
}

.service-card.featured p {
    color: rgba(255,255,255,0.9);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.btn-secondary {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.service-card.featured .btn-primary:hover {
    background: var(--light-color);
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.cta-inline {
    text-align: center;
    margin-top: 3rem;
}

.link-arrow {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.link-arrow:hover {
    color: #1f453a;
}

.testimonial-split {
    padding: 5rem 2rem;
    background: var(--white);
}

.testimonial-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.testimonial-text {
    flex: 1;
}

.testimonial-text blockquote {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--dark-color);
    font-style: italic;
    margin-bottom: 1.5rem;
}

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

.testimonial-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.trust-section {
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: var(--white);
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.trust-item h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

.booking-split {
    padding: 6rem 2rem;
    background: var(--light-color);
}

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

.booking-text {
    flex: 1;
}

.booking-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.booking-text p {
    color: var(--gray);
    font-size: 1.1rem;
}

.booking-form-container {
    flex: 1;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

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

.final-cta-split {
    padding: 5rem 2rem;
    background: var(--white);
}

.final-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.final-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.final-text {
    flex: 1;
}

.final-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-text p {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-large {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.cta-large:hover {
    background: #c49564;
    transform: translateY(-2px);
}

.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

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

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

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

.footer-col li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

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

.sticky-btn:hover {
    background: #c49564;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.page-hero-split {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
}

.story-split {
    padding: 5rem 2rem;
    background: var(--white);
    display: flex;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.values-section {
    padding: 5rem 2rem;
    background: var(--light-color);
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--gray);
}

.team-split {
    padding: 5rem 2rem;
    background: var(--white);
    display: flex;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

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

.certifications {
    padding: 4rem 2rem;
    background: var(--light-color);
}

.cert-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cert-item {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.cert-item p {
    color: var(--dark-color);
    font-weight: 600;
}

.philosophy-split {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.philosophy-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-about {
    padding: 5rem 2rem;
    background: var(--light-color);
}

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

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

.cta-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.services-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1f453a 100%);
    text-align: center;
    color: var(--white);
}

.services-hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-hero-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
}

.services-detailed {
    background: var(--light-color);
}

.service-detail-split {
    padding: 5rem 2rem;
    display: flex;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    background: var(--white);
    margin-bottom: 2rem;
}

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

.service-detail-split.featured-service {
    background: var(--light-color);
    padding: 6rem 2rem;
}

.service-detail-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-detail-content {
    flex: 1;
    position: relative;
}

.service-detail-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

.savings {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--gray);
}

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

.badge-large {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background: #1f453a;
    transform: translateY(-2px);
}

.extras-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.extras-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.extra-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
}

.extra-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.extra-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.extra-card .price {
    font-size: 1.5rem;
}

.booking-cta-services {
    padding: 4rem 2rem;
    background: var(--primary-color);
    text-align: center;
    color: var(--white);
}

.booking-cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.9);
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

.faq-split {
    padding: 5rem 2rem;
    background: var(--white);
}

.faq-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.faq-text {
    flex: 1.5;
}

.faq-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 2rem;
}

.faq-item h3 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--gray);
}

.faq-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.contact-hero {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1f453a 100%);
    text-align: center;
    color: var(--white);
}

.contact-hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

.contact-split {
    padding: 5rem 2rem;
    background: var(--white);
    display: flex;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 3rem;
}

.info-block h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-detail {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.info-detail a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.reach-out {
    padding: 5rem 2rem;
    background: var(--light-color);
}

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

.reach-content h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.reach-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.reach-item {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.reach-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reach-item p {
    color: var(--gray);
}

.visit-us-split {
    padding: 5rem 2rem;
    background: var(--white);
}

.visit-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.visit-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.visit-text {
    flex: 1;
}

.visit-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.visit-text p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.alternative-contact {
    padding: 5rem 2rem;
    background: var(--light-color);
}

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

.alternative-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.alternative-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thanks-hero {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
    text-align: center;
}

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

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

.thanks-content h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.selected-service {
    background: var(--light-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
}

.next-steps {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.steps-content h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

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

.step h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.step p {
    color: var(--gray);
}

.thanks-info-split {
    padding: 5rem 2rem;
    background: var(--light-color);
}

.info-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.info-text {
    flex: 1;
}

.info-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-text p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.checklist {
    list-style: none;
}

.checklist li {
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--gray);
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.info-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.thanks-explore {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.explore-content h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.explore-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.explore-card {
    flex: 1;
    min-width: 300px;
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 10px;
}

.explore-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.explore-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.thanks-contact {
    padding: 4rem 2rem;
    background: var(--light-color);
}

.contact-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-box h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-box p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.contact-email {
    font-size: 1.3rem;
    margin: 1.5rem 0;
}

.contact-email a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: var(--gray);
    font-style: italic;
}

.legal-header {
    padding: 4rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.legal-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.legal-date {
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

.legal-content {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.legal-text h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    color: var(--dark-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-text p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-text ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-text li {
    color: var(--gray);
    margin-bottom: 0.6rem;
    list-style: disc;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

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

.cookie-table td {
    color: var(--gray);
}

@media (max-width: 1024px) {
    .hero-content,
    .intro-split,
    .testimonial-content,
    .booking-content,
    .final-content,
    .story-split,
    .team-split,
    .philosophy-content,
    .service-detail-split,
    .faq-content,
    .contact-split,
    .visit-content,
    .info-content {
        flex-direction: column;
        gap: 3rem;
    }

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

    .hero-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
        padding: 1rem 0;
    }

    .nav-menu li {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .services-grid-split,
    .values-grid,
    .trust-grid,
    .extras-grid,
    .reach-grid,
    .steps-grid,
    .explore-links {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .price-large {
        font-size: 2.5rem;
    }
}
