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

:root {
    --primary-color: #D4A574;
    --secondary-color: #2C2C2C;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --background-light: #FAF9F7;
    --white: #FFFFFF;
    --border-color: #E5E5E5;
    --accent-color: #B8956A;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

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

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

.main-nav {
    background: var(--white);
    padding: 1.5rem 2rem;
    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;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

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

.nav-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent-color);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 6rem;
    background: var(--background-light);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

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

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

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

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

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

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

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

.intro-split {
    display: flex;
    align-items: center;
}

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

.intro-image {
    flex: 1;
}

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

.intro-content {
    flex: 1;
    padding: 5rem 6rem;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    line-height: 1.3;
}

.intro-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.promise-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.promise-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.promise-left {
    flex: 1;
}

.promise-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.promise-left p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.promise-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.promise-card {
    background: var(--background-light);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
}

.promise-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.promise-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.services-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-split-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    margin-bottom: 3rem;
    background: var(--white);
    overflow: hidden;
}

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

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.service-info {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-service {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--accent-color);
}

.services-footer {
    text-align: center;
    margin-top: 3rem;
}

.testimonial-split {
    display: flex;
    align-items: center;
}

.testimonial-content {
    flex: 1;
    padding: 5rem 6rem;
    background: var(--secondary-color);
    color: var(--white);
}

.testimonial-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    margin-bottom: 2.5rem;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.testimonial-image {
    flex: 1;
}

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

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

.booking-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.booking-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-info h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.booking-info p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.booking-benefits {
    list-style: none;
}

.booking-benefits li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.booking-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.booking-form-container {
    flex: 1;
    background: var(--white);
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.booking-form {
    display: flex;
    flex-direction: column;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    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 {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta {
    padding: 6rem 2rem;
    background: var(--primary-color);
    text-align: center;
}

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

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

.final-cta-content p {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-col p {
    color: #CCCCCC;
    line-height: 1.8;
}

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

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

.footer-col ul li a {
    color: #CCCCCC;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #999999;
}

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

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

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

.cookie-content p {
    color: var(--white);
    flex: 1;
}

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: center;
}

.page-hero-content {
    flex: 1;
    padding: 4rem 6rem;
    background: var(--background-light);
}

.page-hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.page-hero-image {
    flex: 1;
}

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

.story-split {
    display: flex;
    align-items: center;
}

.story-image {
    flex: 1;
}

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

.story-content {
    flex: 1;
    padding: 5rem 6rem;
    background: var(--white);
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.story-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.values-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.values-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.values-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.values-split-container {
    max-width: 1400px;
    margin: 0 auto;
}

.value-split {
    display: flex;
    margin-bottom: 4rem;
    align-items: center;
}

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

.value-visual {
    flex: 1;
}

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

.value-text {
    flex: 1;
    padding: 3rem 5rem;
}

.value-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.value-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.team-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.team-intro-split {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.team-intro-content {
    flex: 1;
    padding: 3rem 5rem;
}

.team-intro-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.team-intro-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.team-intro-image {
    flex: 1;
}

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

.team-members {
    max-width: 1400px;
    margin: 0 auto;
}

.team-member-split {
    display: flex;
    margin-bottom: 3rem;
    background: var(--background-light);
    align-items: center;
}

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

.member-image {
    flex: 1;
}

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

.member-info {
    flex: 1;
    padding: 3rem 4rem;
}

.member-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.member-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.philosophy-split {
    display: flex;
    align-items: center;
    background: var(--primary-color);
}

.philosophy-content {
    flex: 1;
    padding: 5rem 6rem;
    color: var(--white);
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.philosophy-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.philosophy-image {
    flex: 1;
}

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

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

.cta-about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.cta-about-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.services-intro-split {
    display: flex;
    align-items: center;
}

.services-intro-image {
    flex: 1;
}

.services-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

.services-intro-content {
    flex: 1;
    padding: 5rem 6rem;
    background: var(--white);
}

.services-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.services-intro-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

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

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 4rem;
    background: var(--white);
}

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

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.service-detail-content {
    flex: 1;
    padding: 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-duration {
    color: var(--text-light);
    font-size: 1.1rem;
}

.service-price-large {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-detail-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.service-includes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
    color: var(--text-light);
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.service-note {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.packages-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.packages-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.packages-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.packages-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.packages-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.package-card {
    flex: 1;
    background: var(--background-light);
    padding: 3rem;
    text-align: center;
}

.package-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.package-card > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.package-price {
    margin-bottom: 2rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.package-price-new {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
}

.services-faq-split {
    display: flex;
    align-items: center;
}

.faq-content {
    flex: 1;
    padding: 5rem 6rem;
    background: var(--background-light);
}

.faq-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

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

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--secondary-color);
}

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

.faq-image {
    flex: 1;
}

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

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

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

.cta-services-content p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.contact-info-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    color: var(--secondary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.visit-info-split {
    display: flex;
    align-items: center;
    background: var(--background-light);
}

.visit-info-split.reverse {
    flex-direction: row-reverse;
}

.visit-image {
    flex: 1;
}

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

.visit-content {
    flex: 1;
    padding: 5rem 6rem;
}

.visit-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.visit-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--secondary-color);
}

.visit-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.transport-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.transport-list li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.parking-note {
    font-style: italic;
    color: var(--text-light);
}

.booking-reminder-split {
    display: flex;
    align-items: center;
}

.booking-reminder-content {
    flex: 1;
    padding: 5rem 6rem;
    background: var(--white);
}

.booking-reminder-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.booking-reminder-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.booking-reminder-image {
    flex: 1;
}

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

.contact-faq {
    padding: 6rem 2rem;
    background: var(--background-light);
}

.contact-faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-faq-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.faq-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.faq-col {
    flex: 1;
}

.studio-atmosphere-split {
    display: flex;
    align-items: center;
}

.atmosphere-content {
    flex: 1;
    padding: 5rem 6rem;
    background: var(--white);
}

.atmosphere-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.atmosphere-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.atmosphere-image {
    flex: 1;
}

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

.cta-contact {
    padding: 5rem 2rem;
    background: var(--primary-color);
    text-align: center;
}

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

.cta-contact-content p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-light);
}

.thanks-container {
    max-width: 900px;
    text-align: center;
    background: var(--white);
    padding: 4rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.thanks-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.thanks-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.thanks-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-service-info {
    background: var(--background-light);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.thanks-additional-info {
    padding: 4rem 2rem;
    background: var(--white);
}

.additional-info-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.info-card {
    flex: 1;
    background: var(--background-light);
    padding: 2rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.7rem;
    color: var(--text-light);
}

.info-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.legal-page {
    padding: 4rem 2rem;
    background: var(--background-light);
    min-height: 70vh;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--secondary-color);
}

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

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .testimonial-split,
    .booking-split,
    .page-hero-split,
    .story-split,
    .value-split,
    .team-intro-split,
    .team-member-split,
    .philosophy-split,
    .services-intro-split,
    .service-detail-split,
    .services-faq-split,
    .contact-info-split,
    .visit-info-split,
    .booking-reminder-split,
    .studio-atmosphere-split,
    .service-card-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .value-split.reverse,
    .team-member-split.reverse,
    .visit-info-split.reverse,
    .service-card-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .intro-content,
    .page-hero-content,
    .story-content,
    .value-text,
    .visit-content,
    .booking-reminder-content,
    .atmosphere-content,
    .services-intro-content,
    .testimonial-content,
    .philosophy-content {
        padding: 3rem 2rem;
    }

    .service-info,
    .service-detail-content,
    .member-info {
        padding: 2rem;
    }

    .promise-container,
    .faq-grid-split,
    .packages-grid-split,
    .additional-info-container {
        flex-direction: column;
    }

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

    .footer-container {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-col {
        flex: 1 1 45%;
    }

    .nav-menu {
        gap: 1.5rem;
    }

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

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .nav-menu {
        display: none;
    }

    .legal-container {
        padding: 2rem;
    }

    .thanks-container {
        padding: 2rem;
    }
}
