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

:root {
    --primary-color: #8B6F47;
    --secondary-color: #5A4A3A;
    --accent-color: #D4A574;
    --text-dark: #2C2416;
    --text-light: #F5F1EB;
    --background-light: #FDFAF6;
    --background-medium: #EDE8E0;
    --border-color: #D1C7B8;
    --success-color: #6B8E4E;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--background-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.header {
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.main-nav a:hover {
    color: var(--primary-color);
}

.ad-label {
    font-size: 11px;
    color: var(--secondary-color);
    background-color: var(--background-medium);
    padding: 4px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

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

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

.hero-text-content {
    max-width: 500px;
}

.hero-text-content h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-text-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.hero-right {
    flex: 1;
    position: relative;
    background-color: var(--accent-color);
    overflow: hidden;
}

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

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

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

.intro-split {
    display: flex;
    min-height: 500px;
}

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

.split-image {
    flex: 1;
    background-color: var(--background-medium);
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.services-showcase {
    padding: 80px 0;
    background-color: var(--background-light);
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header-center p {
    font-size: 18px;
    color: var(--secondary-color);
}

.services-grid-split {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card-split {
    display: flex;
    background-color: white;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

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

.service-image-wrapper {
    flex: 1;
    background-color: var(--background-medium);
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.select-service-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

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

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

.booking-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.booking-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.benefit-icon {
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.booking-right {
    flex: 1;
    padding: 60px 80px;
    background-color: white;
    display: flex;
    align-items: center;
}

.booking-form {
    width: 100%;
    max-width: 500px;
}

.selected-service-info {
    background-color: var(--background-medium);
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.selected-service-info p {
    margin-bottom: 5px;
    font-size: 15px;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

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

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

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

.why-choose-split .split-content {
    background-color: white;
}

.disclaimer-section {
    padding: 50px 0;
    background-color: var(--background-medium);
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--secondary-color);
    font-style: italic;
    text-align: center;
}

.footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 36, 22, 0.97);
    color: var(--text-light);
    padding: 20px;
    z-index: 1000;
    border-top: 2px solid var(--accent-color);
}

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

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

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

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

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

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

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

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

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

.page-hero-split {
    display: flex;
    min-height: 400px;
}

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

.hero-content-left h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.hero-content-left p {
    font-size: 18px;
    color: var(--secondary-color);
}

.hero-image-right {
    flex: 1;
    background-color: var(--accent-color);
    overflow: hidden;
}

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

.about-story-split,
.team-split {
    display: flex;
}

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

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

.methodology-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.methodology-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

.section-title-center {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: white;
    padding: 35px;
    border: 1px solid var(--border-color);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.cta-about-split {
    display: flex;
    min-height: 400px;
}

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

.cta-left-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.cta-left-content p {
    font-size: 17px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.cta-left-content .cta-button {
    background-color: var(--text-light);
    color: var(--primary-color);
    align-self: flex-start;
}

.cta-left-content .cta-button:hover {
    background-color: var(--background-medium);
}

.cta-right-image {
    flex: 1;
    background-color: var(--background-medium);
    overflow: hidden;
}

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

.page-hero-simple {
    padding: 80px 0;
    background-color: var(--background-medium);
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-hero-simple p {
    font-size: 18px;
    color: var(--secondary-color);
}

.services-detailed {
    padding: 80px 0;
}

.service-detail-split {
    display: flex;
    margin-bottom: 60px;
    background-color: white;
    border: 1px solid var(--border-color);
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--background-medium);
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 50px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-duration {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 18px;
    margin: 25px 0 15px;
    color: var(--text-dark);
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-content ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-pricing {
    margin: 30px 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

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

.price-note {
    font-size: 14px;
    color: var(--secondary-color);
}

.booking-info-section {
    padding: 80px 0;
    background-color: var(--background-medium);
}

.booking-info-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.info-item {
    flex: 1 1 calc(50% - 15px);
    background-color: white;
    padding: 30px;
    border: 1px solid var(--border-color);
}

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

.info-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--secondary-color);
}

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

.contact-info-left {
    flex: 1;
    padding: 60px 80px;
    background-color: var(--background-medium);
}

.contact-info-left h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-detail-block {
    margin-bottom: 35px;
}

.contact-detail-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-detail-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--secondary-color);
}

.note-text {
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

.contact-map-right {
    flex: 1;
    background-color: white;
    display: flex;
    flex-direction: column;
}

.map-placeholder {
    flex: 1;
    position: relative;
    background-color: var(--background-medium);
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 36, 22, 0.85);
    color: var(--text-light);
    padding: 20px;
}

.map-overlay p {
    font-size: 14px;
    margin: 0;
}

.visit-info {
    padding: 40px;
}

.visit-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.visit-info p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.transport-info-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.transport-info-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.transport-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.transport-item {
    flex: 1 1 calc(50% - 15px);
    background-color: white;
    padding: 30px;
    border: 1px solid var(--border-color);
}

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

.transport-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--secondary-color);
}

.thanks-section {
    padding: 100px 0;
    min-height: 600px;
}

.thanks-content {
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.selected-service-display {
    background-color: var(--background-medium);
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

.next-steps {
    text-align: left;
    max-width: 700px;
    margin: 40px auto;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.steps-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.thanks-info {
    background-color: var(--background-medium);
    padding: 20px;
    margin: 40px 0;
    border-radius: 4px;
    text-align: left;
}

.thanks-info p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--secondary-color);
}

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

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 15px 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 15px 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s;
}

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

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.last-updated {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-page ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-page ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--secondary-color);
}

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

.legal-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.legal-table th,
.legal-table td,
.cookies-table th,
.cookies-table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

.legal-table th,
.cookies-table th {
    background-color: var(--background-medium);
    font-weight: 700;
    color: var(--text-dark);
}

.legal-table td,
.cookies-table td {
    font-size: 15px;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        background-color: var(--background-light);
        flex-direction: column;
        padding: 30px;
        transition: left 0.3s;
        border-bottom: 1px solid var(--border-color);
    }

    .main-nav.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-split,
    .intro-split,
    .booking-split,
    .why-choose-split,
    .page-hero-split,
    .about-story-split,
    .team-split,
    .cta-about-split,
    .service-card-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-content-left,
    .split-content,
    .booking-left,
    .booking-right,
    .cta-left-content,
    .contact-info-left,
    .service-details,
    .service-detail-content {
        padding: 40px 30px;
    }

    .hero-text-content h1,
    .hero-content-left h1 {
        font-size: 36px;
    }

    .split-content h2,
    .booking-left h2,
    .cta-left-content h2,
    .contact-info-left h2,
    .service-detail-content h2 {
        font-size: 28px;
    }

    .section-header-center h2,
    .section-title-center,
    .booking-info-section h2,
    .transport-info-section h2,
    .thanks-content h1 {
        font-size: 32px;
    }

    .value-card,
    .info-item,
    .transport-item {
        flex: 1 1 100%;
    }

    .footer-content {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }
}
