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

:root {
    --primary-color: #2c5f3d;
    --secondary-color: #7a9b86;
    --accent-color: #d4a574;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #666;
    --white: #ffffff;
    --overlay: rgba(0, 0, 0, 0.5);
    --overlay-light: rgba(0, 0, 0, 0.3);
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .floating-nav {
        padding: 15px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .nav-toggle {
        display: flex;
    }
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 85vh;
    min-height: 600px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    padding: 0 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 300;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

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

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

@media (max-width: 768px) {
    .hero-visual {
        height: 70vh;
        min-height: 500px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }
}

.intro-narrative {
    padding: 100px 0 80px;
    background: var(--white);
}

.intro-narrative h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.visual-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.grid-item {
    position: relative;
    flex: 1 1 calc(33.333% - 15px);
    min-width: 280px;
    height: 350px;
    overflow: hidden;
}

.grid-item.large {
    flex: 1 1 calc(66.666% - 15px);
    height: 500px;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.05);
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--white);
}

.grid-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .visual-grid {
        flex-direction: column;
    }

    .grid-item,
    .grid-item.large {
        width: 100%;
        height: 300px;
    }
}

.philosophy-offset {
    padding: 80px 0;
    background: var(--light);
}

.offset-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.offset-text {
    flex: 1;
}

.offset-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.offset-text p {
    margin-bottom: 20px;
    color: var(--gray);
    line-height: 1.8;
}

.link-arrow {
    display: inline-block;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 15px;
}

.link-arrow:after {
    content: " →";
}

.offset-visual {
    flex: 1;
}

.offset-visual img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

@media (max-width: 968px) {
    .offset-content {
        flex-direction: column;
    }
}

.testimonial-inline {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
}

.testimonial-inline blockquote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 16px;
    opacity: 0.8;
}

.tour-selection {
    padding: 100px 0;
    background: var(--white);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

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

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

.tours-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.tour-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.tour-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.tour-info {
    padding: 30px;
}

.tour-info h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.tour-duration {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.tour-description {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--gray);
}

.tour-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tour-highlights span {
    background: var(--light);
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 4px;
    color: var(--dark);
}

.tour-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.select-tour-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.select-tour-btn.selected {
    background: var(--accent-color);
}

@media (max-width: 768px) {
    .tours-showcase {
        flex-direction: column;
    }

    .tour-card {
        width: 100%;
    }
}

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

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

#selectedTourDisplay {
    font-size: 18px;
    color: var(--gray);
}

.booking-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    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);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--gray);
}

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

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

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.trust-elements {
    padding: 80px 0;
    background: var(--white);
}

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

.trust-item {
    flex: 1 1 calc(25% - 30px);
    min-width: 220px;
    text-align: center;
    padding: 30px 20px;
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

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

.trust-item p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .trust-grid {
        flex-direction: column;
    }

    .trust-item {
        width: 100%;
    }
}

.final-testimonials {
    padding: 80px 0;
    background: var(--light);
}

.final-testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial {
    background: var(--white);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--dark);
}

.testimonial cite {
    font-style: normal;
    color: var(--gray);
    font-size: 14px;
}

.visual-closer {
    position: relative;
    height: 500px;
}

.closer-image {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.closer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--overlay);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.closer-overlay h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
}

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

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

.footer-col ul li a {
    color: #aaa;
    font-size: 14px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 15px 20px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-content span {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.btn-sticky {
    background: var(--white);
    color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 4px;
    font-weight: 600;
    white-space: nowrap;
}

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

@media (max-width: 768px) {
    .sticky-content {
        flex-direction: column;
        text-align: center;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--white);
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border-radius: 8px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content p {
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

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

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

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

.btn-reject {
    background: #eee;
    color: var(--dark);
}

.btn-reject:hover {
    background: #ddd;
}

.page-hero-visual {
    margin-top: 80px;
    position: relative;
    height: 400px;
}

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

.legal-page h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.legal-intro {
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 14px;
}

.legal-page h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin: 40px 0 20px;
}

.legal-page h3 {
    font-size: 22px;
    color: var(--dark);
    margin: 30px 0 15px;
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--gray);
}

.legal-page ul {
    margin: 15px 0 15px 25px;
    line-height: 1.8;
    color: var(--gray);
}

.legal-back {
    margin-top: 50px;
    text-align: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.services-intro {
    padding: 80px 0;
    background: var(--white);
}

.services-intro h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.services-detailed {
    background: var(--light);
    padding: 60px 0;
}

.service-item {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    margin-bottom: 80px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
}

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

.service-visual {
    flex: 0 0 45%;
}

.service-visual img {
    width: 100%;
    border-radius: 4px;
}

.service-content {
    flex: 1;
}

.service-header {
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-meta span {
    background: var(--light);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.badge-premium {
    background: var(--accent-color);
    color: var(--white);
}

.duration {
    color: var(--primary-color);
}

.difficulty {
    color: var(--gray);
}

.service-description {
    margin-bottom: 25px;
    line-height: 1.7;
    color: var(--gray);
}

.service-details,
.service-includes {
    margin-bottom: 25px;
}

.service-details h4,
.service-includes h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-details ul,
.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-details li,
.service-includes li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray);
}

.service-details li:before,
.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-price-box {
    margin-top: 30px;
    padding: 20px;
    background: var(--light);
    border-radius: 4px;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
}

.price-amount {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.btn-book {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

@media (max-width: 968px) {
    .service-item,
    .service-item.reverse {
        flex-direction: column;
    }

    .service-visual {
        flex: 1 1 100%;
        width: 100%;
    }
}

.services-comparison {
    padding: 80px 0;
    background: var(--white);
}

.services-comparison h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

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

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

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

.services-faq h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-left: 4px solid var(--primary-color);
}

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

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

.about-story {
    padding: 80px 0;
    background: var(--white);
}

.about-story h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

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

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.team-member {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 250px;
    text-align: center;
    background: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.member-role {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray);
}

@media (max-width: 768px) {
    .team-grid {
        flex-direction: column;
    }

    .team-member {
        width: 100%;
    }
}

.philosophy-section {
    padding: 80px 0;
    background: var(--white);
}

.philosophy-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.philosophy-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.philosophy-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: var(--light);
    border-left: 4px solid var(--primary-color);
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.philosophy-item p {
    color: var(--gray);
    line-height: 1.7;
}

.certifications {
    padding: 80px 0;
    background: var(--light);
}

.certifications h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.cert-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background: var(--white);
    text-align: center;
    border-radius: 8px;
}

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

.cert-item p {
    color: var(--gray);
    line-height: 1.6;
}

.timeline-section {
    padding: 80px 0;
    background: var(--white);
}

.timeline-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.timeline {
    position: relative;
    padding-left: 60px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-year {
    position: absolute;
    left: -60px;
    width: 80px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.timeline-content {
    background: var(--light);
    padding: 25px;
    border-radius: 4px;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--gray);
    line-height: 1.6;
}

.about-cta {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

.contact-main {
    padding: 80px 0;
    background: var(--white);
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-intro {
    margin-bottom: 40px;
    line-height: 1.7;
    color: var(--gray);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

.contact-item p {
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 5px;
}

.contact-note {
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
    margin-top: 10px;
}

.contact-visual {
    flex: 1;
}

.map-placeholder {
    position: relative;
    height: 350px;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
}

.location-info {
    background: var(--light);
    padding: 25px;
    border-radius: 8px;
}

.location-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.location-info p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: var(--gray);
}

@media (max-width: 968px) {
    .contact-layout {
        flex-direction: column;
    }
}

.contact-faq {
    padding: 80px 0;
    background: var(--light);
}

.contact-booking-cta {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.contact-booking-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--white);
}

.contact-booking-cta p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--white);
}

.thanks-page {
    background: var(--light);
}

.thanks-hero {
    padding: 120px 0 80px;
    text-align: center;
}

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

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

.thanks-hero h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-subtitle {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.booking-summary {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.booking-summary h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.summary-details p {
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--gray);
}

.summary-details strong {
    color: var(--dark);
}

.next-steps {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.steps-list {
    counter-reset: steps;
    list-style: none;
    padding: 0;
}

.steps-list li {
    counter-increment: steps;
    position: relative;
    padding-left: 50px;
    margin-bottom: 30px;
}

.steps-list li:before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.steps-list strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.steps-list p {
    color: var(--gray);
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.thanks-contact {
    text-align: center;
    color: var(--gray);
}

.thanks-contact p {
    margin-bottom: 10px;
}

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

@media (max-width: 768px) {
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .thanks-actions .btn-primary,
    .thanks-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}
