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

:root {
    --primary-color: #d4a574;
    --secondary-color: #2c2c2c;
    --accent-color: #b8936f;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #faf8f6;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --transition: all 0.3s ease;
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

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

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

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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.nav-links {
    display: none;
    gap: 2rem;
}

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

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

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

.nav-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: var(--bg-light);
}

.hero-content {
    max-width: 550px;
}

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

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

.hero-right {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary,
.cta-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.cta-primary:hover,
.cta-secondary:hover,
.cta-large:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.cta-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.cta-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.intro-section {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.intro-narrow {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.intro-narrow h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.intro-narrow p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.services-preview {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.section-header-split {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

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

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

.link-arrow {
    font-weight: 600;
    font-size: 1.05rem;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-info {
    padding: 2rem;
}

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

.service-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.btn-select {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.why-choose-split {
    display: flex;
    flex-direction: column;
}

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

.split-left {
    min-height: 400px;
}

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

.split-right {
    padding: 4rem 5%;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.feature-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

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

.testimonials-flow {
    padding: 5rem 5%;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

.testimonials-flow h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

.author {
    display: block;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
}

.process-section {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

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

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

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

.booking-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.booking-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-left {
    flex: 1;
}

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

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

.booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    font-size: 1.05rem;
    color: var(--primary-color);
    font-weight: 600;
}

.booking-right {
    flex: 1;
}

.booking-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
}

.final-cta {
    padding: 6rem 5%;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

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

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

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

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

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.4);
    transition: var(--transition);
}

.sticky-cta a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 165, 116, 0.5);
}

.page-header {
    padding: 4rem 5%;
    text-align: center;
    background: var(--bg-light);
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.services-detailed {
    padding: 3rem 5%;
    background: var(--bg-white);
}

.service-detail-card {
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-detail-split {
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 1;
    min-height: 350px;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

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

.price-tag {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    background: white;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

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

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

.service-detail-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-content li {
    color: var(--text-light);
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.additional-info {
    padding: 5rem 5%;
    background: var(--bg-white);
}

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

.info-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--secondary-color);
}

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

.info-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

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

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

.booking-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.about-hero {
    background: var(--bg-white);
}

.about-hero-split {
    display: flex;
    flex-direction: column;
    min-height: 70vh;
}

.about-hero-left {
    flex: 1;
    min-height: 400px;
}

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

.about-hero-right {
    flex: 1;
    padding: 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--bg-light);
}

.about-hero-right h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.story-section {
    padding: 5rem 5%;
    background: var(--bg-white);
}

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

.story-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    text-align: center;
}

.story-narrow p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.credentials-split {
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
}

.cred-left {
    flex: 1;
    padding: 4rem 5%;
}

.cred-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--secondary-color);
}

.credentials-list {
    list-style: none;
}

.credentials-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.credentials-list strong {
    display: block;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.credentials-list br + text {
    color: var(--text-light);
}

.cred-right {
    flex: 1;
    min-height: 400px;
}

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

.philosophy-section {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--secondary-color);
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.philosophy-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.experience-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.experience-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--secondary-color);
}

.experience-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 3px solid var(--primary-color);
}

.timeline-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.collaboration-section {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.collaboration-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.collab-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.collab-item {
    background: var(--bg-light);
    padding: 1.2rem;
    border-radius: 4px;
    border-left: 3px solid var(--primary-color);
    color: var(--text-dark);
}

.values-section {
    padding: 5rem 5%;
    background: var(--secondary-color);
    color: white;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.value-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid var(--primary-color);
}

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

.value-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

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

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

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

.contact-header {
    padding: 4rem 5%;
    text-align: center;
    background: var(--bg-light);
}

.contact-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.contact-main {
    padding: 5rem 5%;
    background: var(--bg-white);
}

.contact-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

.contact-detail {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 1rem 0;
}

.contact-detail strong {
    color: var(--secondary-color);
}

.contact-detail a {
    font-size: 1.1rem;
    font-weight: 600;
}

.hours-list {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 4px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--secondary-color);
}

.time {
    color: var(--text-light);
}

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

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

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

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.9);
    color: white;
    padding: 1.5rem;
}

.map-overlay p {
    margin: 0.3rem 0;
}

.directions-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

.transport-option {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.transport-option:last-child {
    border-bottom: none;
}

.transport-option strong {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.faq-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.faq-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--secondary-color);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

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

.contact-cta {
    padding: 5rem 5%;
    background: var(--bg-white);
    text-align: center;
}

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

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

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
    background: var(--bg-light);
}

.thanks-container {
    max-width: 800px;
    background: var(--bg-white);
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    text-align: center;
}

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

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

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

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

.thanks-details h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

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

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

.selected-service-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.selected-service-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

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

.thanks-info {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

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

.thanks-info ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

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

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

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

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

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

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

.thanks-contact {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.thanks-contact p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.thanks-contact a {
    font-size: 1.1rem;
    font-weight: 600;
}

.legal-page {
    padding: 4rem 5%;
    background: var(--bg-white);
}

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

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

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

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.7rem;
    color: var(--text-dark);
}

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

.legal-container ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-container li {
    color: var(--text-light);
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-container strong {
    color: var(--text-dark);
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-light);
}

.gdpr-table thead,
.cookies-table thead {
    background: var(--secondary-color);
    color: white;
}

.gdpr-table th,
.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.gdpr-table td,
.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-split,
    .about-hero-split {
        flex-direction: row;
    }

    .section-header-split {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .why-choose-split,
    .credentials-split {
        flex-direction: row;
    }

    .testimonials-container {
        flex-direction: row;
    }

    .process-steps {
        flex-direction: row;
    }

    .booking-split,
    .contact-split {
        flex-direction: row;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .sticky-cta {
        display: block;
    }

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

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

    .info-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-box {
        flex: 0 0 calc(50% - 1rem);
    }

    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .cookie-content {
        flex-wrap: nowrap;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .services-grid {
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(33.333% - 1.4rem);
    }
}