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

:root {
    --color-primary: #1a4d2e;
    --color-secondary: #d4af37;
    --color-dark: #0f2415;
    --color-light: #f5f5f0;
    --color-accent: #c1502e;
    --color-gray: #5a5a5a;
    --color-border: #d0d0d0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

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

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

.header-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

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

.nav-floating a {
    color: var(--color-gray);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

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

.nav-floating a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav-floating a:hover::after,
.nav-floating a.active::after {
    width: 100%;
}

.hero-immersive {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.9), rgba(15, 36, 21, 0.85)),
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

.cta-hero {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-dark);
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-hero:hover {
    background: #e5c04a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.story-intro {
    padding: 100px 20px;
    background: var(--color-light);
}

.story-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
    color: var(--color-primary);
    line-height: 1.2;
}

.story-intro p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #3a3a3a;
    line-height: 1.8;
}

.problem-section {
    padding: 100px 20px;
    background: white;
}

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

.split-text,
.split-image {
    flex: 1;
    min-width: 300px;
}

.split-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 25px;
    color: var(--color-accent);
    line-height: 1.3;
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.05rem;
}

.problem-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.insight-reveal {
    padding: 100px 20px;
    background: var(--color-dark);
    color: white;
}

.insight-reveal h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 30px;
    color: var(--color-secondary);
}

.insight-reveal p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.insight-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 12px;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-box h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--color-secondary);
}

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

.phase {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--color-secondary);
}

.phase-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-secondary);
    opacity: 0.3;
    margin-bottom: 15px;
}

.phase h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

.phase p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.85;
}

.trust-section {
    padding: 100px 20px;
    background: var(--color-primary);
    color: white;
    text-align: center;
}

.trust-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 60px;
}

.stats-row {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonials-inline {
    padding: 100px 20px;
    background: var(--color-light);
}

.testimonial {
    margin-bottom: 50px;
    padding: 40px;
    background: white;
    border-left: 4px solid var(--color-secondary);
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gray);
}

.routes-showcase {
    padding: 100px 20px;
    background: white;
}

.routes-showcase h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-primary);
}

.routes-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.route-card {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.route-card:hover {
    transform: translateY(-8px);
}

.route-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.route-content {
    padding: 25px;
}

.route-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.route-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--color-gray);
    line-height: 1.6;
}

.difficulty {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-light);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.benefits-reveal {
    padding: 100px 20px;
    background: var(--color-light);
}

.benefits-reveal h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 50px;
    text-align: center;
    color: var(--color-primary);
}

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

.benefit-item {
    padding: 35px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.benefit-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-gray);
}

.services-pricing {
    padding: 100px 20px;
    background: white;
}

.services-pricing h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 60px;
    color: var(--color-gray);
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    padding: 35px;
    background: var(--color-light);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--color-secondary);
    transform: translateY(-5px);
}

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

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.service-description {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--color-gray);
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 0.95rem;
    color: var(--color-gray);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

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

.btn-select-service {
    width: 100%;
    padding: 15px;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: var(--color-dark);
    transform: translateY(-2px);
}

.urgency-section {
    padding: 80px 20px;
    background: var(--color-accent);
    color: white;
}

.urgency-box {
    text-align: center;
}

.urgency-box h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 25px;
}

.urgency-box p {
    font-size: 1.15rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.final-cta-section {
    padding: 100px 20px;
    background: var(--color-primary);
    color: white;
    text-align: center;
}

.final-cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.final-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-primary-large {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-dark);
    padding: 20px 50px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary-large:hover {
    background: #e5c04a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.booking-form-section {
    padding: 100px 20px;
    background: var(--color-light);
}

.booking-form-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 40px;
    text-align: center;
    color: var(--color-primary);
}

.booking-form {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 250px;
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.form-group-checkbox input {
    margin-top: 5px;
}

.form-group-checkbox label {
    font-size: 0.95rem;
    color: var(--color-gray);
}

.form-group-checkbox a {
    color: var(--color-primary);
    text-decoration: underline;
}

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

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

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

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

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.footer-col p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

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

.sticky-cta-btn {
    display: block;
    background: var(--color-accent);
    color: white;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(193, 80, 46, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #d4592f;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(193, 80, 46, 0.5);
}

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

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #e5c04a;
}

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

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

.page-hero {
    padding: 150px 20px 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.about-story {
    padding: 100px 20px;
    background: white;
}

.about-story h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 30px;
    color: var(--color-primary);
}

.about-story p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.team-section {
    padding: 100px 20px;
    background: var(--color-light);
}

.team-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-primary);
}

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

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.team-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-secondary);
}

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

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

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

.team-member p {
    font-size: 0.95rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.values-section {
    padding: 100px 20px;
    background: white;
}

.values-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 50px;
    text-align: center;
    color: var(--color-primary);
}

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

.value-item {
    padding: 30px;
    background: var(--color-light);
    border-radius: 8px;
    border-left: 4px solid var(--color-secondary);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-gray);
}

.achievements-section {
    padding: 100px 20px;
    background: var(--color-primary);
    color: white;
}

.achievements-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
}

.achievements-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.achievement {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.achievement-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.achievement h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--color-secondary);
}

.achievement p {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-secondary {
    padding: 80px 20px;
    background: var(--color-dark);
    color: white;
    text-align: center;
}

.cta-secondary h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.cta-secondary p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.services-list {
    padding: 60px 20px 100px;
}

.service-card-detailed {
    margin-bottom: 60px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-header {
    position: relative;
}

.service-header img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-body {
    padding: 50px;
}

.service-body h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.service-tagline {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 30px;
}

.service-body h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--color-primary);
}

.service-body p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--color-gray);
}

.service-body ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-body ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 1rem;
    color: var(--color-gray);
}

.service-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.service-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    padding: 25px;
    background: var(--color-light);
    border-radius: 8px;
}

.detail-item {
    flex: 1;
    min-width: 200px;
    font-size: 0.95rem;
    color: var(--color-gray);
}

.service-price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    padding: 25px;
    background: var(--color-light);
    border-radius: 8px;
}

.price-label {
    font-size: 1.1rem;
    color: var(--color-gray);
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-primary);
}

.services-intro {
    padding: 40px 20px;
}

.included-list {
    list-style: none;
    margin-top: 20px;
}

.included-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1.05rem;
}

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

.booking-info {
    padding: 80px 20px;
    background: var(--color-light);
}

.booking-info h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 40px;
    text-align: center;
    color: var(--color-primary);
}

.info-boxes {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 300px;
    padding: 35px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

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

.info-box ul li {
    padding: 8px 0;
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.6;
}

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

.cta-booking h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}

.cta-booking p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.contact-section {
    padding: 80px 20px;
}

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

.contact-info,
.contact-map {
    flex: 1;
    min-width: 300px;
}

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

.contact-info p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
    color: var(--color-gray);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 30px;
}

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

.contact-item p,
.contact-item a {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray);
}

.contact-item a {
    color: var(--color-primary);
    text-decoration: underline;
}

.contact-note {
    padding: 20px;
    background: var(--color-light);
    border-radius: 6px;
    border-left: 4px solid var(--color-secondary);
}

.contact-note p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 77, 46, 0.9);
    color: white;
    padding: 20px;
}

.map-overlay p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

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

.faq-section h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 40px;
    text-align: center;
    color: var(--color-primary);
}

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

.faq-item {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

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

.thanks-section {
    padding: 150px 20px 80px;
}

.thanks-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-box h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
    color: var(--color-primary);
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: var(--color-gray);
}

.thanks-details {
    text-align: left;
    background: var(--color-light);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

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

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray);
}

.thanks-info {
    padding: 25px;
    background: #fff3cd;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid var(--color-secondary);
}

.thanks-info p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #856404;
}

.thanks-info a {
    color: var(--color-primary);
    text-decoration: underline;
}

.thanks-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.preparation-tips {
    padding: 80px 20px;
    background: var(--color-light);
}

.preparation-tips h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 40px;
    text-align: center;
    color: var(--color-primary);
}

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

.tip-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.tip-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray);
}

.selected-service-info {
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--color-secondary);
}

.selected-service-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-gray);
}

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

.legal-page {
    padding: 150px 20px 100px;
    background: white;
}

.legal-page h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 15px;
    color: var(--color-primary);
}

.last-updated {
    font-size: 0.95rem;
    color: var(--color-gray);
    margin-bottom: 40px;
}

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

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

.legal-page h4 {
    font-size: 1.2rem;
    margin: 25px 0 12px;
    color: var(--color-primary);
}

.legal-page p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-gray);
}

.legal-page ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-page ul li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    color: var(--color-gray);
}

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

.cookie-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.cookie-table thead {
    background: var(--color-light);
}

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

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

.cookie-table td {
    font-size: 0.95rem;
    color: var(--color-gray);
}

@media (max-width: 768px) {
    .nav-floating {
        gap: 15px;
        font-size: 0.85rem;
    }

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

    .stats-row,
    .routes-grid,
    .services-grid,
    .achievements-grid {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    .booking-form {
        padding: 30px 20px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .phase-grid {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nav-floating {
        display: none;
    }

    .form-row {
        flex-direction: column;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}
