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

:root {
    --primary-color: #2c5f6f;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #fafafa;
    --bg-dark: #2a2a2a;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid var(--border-color);
}

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 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;
    list-style: none;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background-color: #e5e5e5;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary:hover {
    background-color: #1f4450;
}

.cta-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

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

.split-standard,
.split-reverse {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 500px;
}

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

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

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

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #444;
}

.split-image {
    flex: 1;
    background-color: #e5e5e5;
}

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

.services-grid {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 2rem;
}

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

.section-header h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 1.5rem);
    min-width: 320px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e5e5e5;
}

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

.service-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    color: #555;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    padding: 0 1.5rem;
    margin: 1rem 0;
}

.select-service {
    width: calc(100% - 3rem);
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.8rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #1f4450;
}

.process-list {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.process-list li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #444;
}

.booking-form-section {
    max-width: 700px;
    margin: 4rem auto;
    padding: 3rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.booking-form-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
}

.testimonials-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    background-color: var(--bg-light);
}

.testimonial-content {
    flex: 1;
    padding: 4rem 3rem;
}

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

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

.testimonial-item p {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    margin-bottom: 1rem;
}

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

.testimonial-image {
    flex: 1;
    background-color: #e5e5e5;
}

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

.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-column p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    text-align: center;
    color: #999;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 1rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 1.5rem;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

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

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

.cookie-accept:hover {
    background-color: #1f4450;
}

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

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

.page-hero {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

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

.page-hero p {
    font-size: 1.2rem;
    color: #666;
}

.services-detail {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.service-detail-item {
    display: flex;
    margin-bottom: 4rem;
    gap: 3rem;
    align-items: center;
}

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

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

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

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.tour-highlights {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.tour-highlights li {
    margin-bottom: 0.5rem;
    color: #444;
}

.service-detail-image {
    flex: 1;
    background-color: #e5e5e5;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
}

.cta-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.team-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-section > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-member {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    width: calc(50% - 1rem);
    min-width: 280px;
}

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

.team-member p {
    color: #555;
}

.values-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 2rem;
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.value-item p {
    color: #555;
}

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

.contact-info {
    flex: 1;
}

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

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: #555;
    line-height: 1.8;
}

.info-note {
    font-size: 0.95rem;
    color: #777;
    margin-top: 0.5rem;
}

.contact-image {
    flex: 1;
    background-color: #e5e5e5;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.faq-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
}

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

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.faq-item p {
    color: #555;
}

.thanks-section {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    min-height: 500px;
}

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

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

.thanks-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.confirmation-details {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.confirmation-details h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.next-steps {
    margin: 2rem 0;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.next-steps ol {
    margin-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.8rem;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.thanks-image {
    flex: 1;
    background-color: #e5e5e5;
}

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

.legal-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
}

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

.last-updated {
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.legal-page h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #444;
}

.legal-page ul,
.legal-page ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    color: #555;
}

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

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

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

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

@media (max-width: 768px) {
    .hero-split,
    .split-standard,
    .split-reverse,
    .testimonials-split,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

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

    .team-member,
    .value-item {
        width: 100%;
    }

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