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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bf0d;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 4px 20px rgba(0,0,0,0.15);
}

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

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

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

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

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

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

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

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

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

.nav-menu {
    display: none;
    list-style: none;
    gap: 30px;
}

.nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.nav-menu li a {
    font-weight: 500;
    font-size: 16px;
}

.hero-overlay {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-overlay-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 40px 20px;
    max-width: 900px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-hero:hover {
    background-color: #e05a2a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.lead-text {
    font-size: 22px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.intro-story p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.split-visual {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.split-visual.left {
    flex-direction: column-reverse;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-white);
}

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

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

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

.check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-light);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-title.centered {
    text-align: center;
}

.centered {
    text-align: center;
}

.insight-block p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlight-box {
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-left: 4px solid var(--accent-color);
    margin-top: 40px;
}

.highlight-box p {
    margin: 0;
    font-size: 20px;
}

.story-continue {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

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

.grid-item {
    overflow: hidden;
    border-radius: 4px;
}

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

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

.caption {
    padding: 15px;
    background-color: var(--bg-light);
    font-size: 14px;
    color: var(--text-light);
    text-align: center;
}

.testimonial-inline {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

blockquote {
    border-left: 5px solid var(--secondary-color);
    padding-left: 30px;
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
}

cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 16px;
    color: var(--text-light);
}

.benefits-reveal {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.benefits-reveal h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

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

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

.cta-mid {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4620 100%);
}

.cta-box {
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #e05a2a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.trust-building {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.trust-building h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.trust-building p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-light);
}

.stats-row {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.stat {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: var(--text-light);
}

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

.tour-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}

.tour-item {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
}

.tour-item:hover {
    box-shadow: var(--shadow-lg);
}

.tour-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.tour-badge.badge-relaxed {
    background-color: #3498db;
}

.tour-badge.badge-family {
    background-color: #9b59b6;
}

.tour-badge.badge-challenge {
    background-color: #e74c3c;
}

.tour-badge.badge-international {
    background-color: #f39c12;
}

.tour-content {
    padding: 30px;
}

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

.tour-desc {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.tour-features {
    list-style: none;
    margin-bottom: 20px;
}

.tour-features li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-light);
}

.tour-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

.tour-highlights {
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.tour-highlights p {
    font-size: 15px;
    margin: 0;
    color: var(--text-light);
}

.tour-level {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.level-label {
    font-size: 15px;
    color: var(--text-light);
}

.level-dots {
    display: flex;
    gap: 5px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
}

.dot.filled {
    background-color: var(--secondary-color);
}

.level-text {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.tour-price {
    margin-bottom: 20px;
}

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

.price-note {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

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

.btn-select-tour:hover {
    background-color: #1e4620;
    transform: translateY(-2px);
}

.urgency-block {
    padding: 60px 20px;
    background-color: #fff3cd;
    border-top: 4px solid #ffc107;
    border-bottom: 4px solid #ffc107;
}

.urgency-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.urgency-content p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 10px;
}

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

.form-section h2 {
    font-size: 34px;
    margin-bottom: 15px;
    text-align: center;
}

.form-section > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.booking-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.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;
    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);
}

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

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    font-size: 14px;
}

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

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

.final-testimonials {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.final-testimonials h2 {
    font-size: 34px;
    margin-bottom: 40px;
}

.testimonial-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

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

.testimonial-card p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 14px;
}

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
}

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

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

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

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

.footer-section ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

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

.btn-sticky {
    display: block;
    padding: 16px 30px;
    background-color: var(--accent-color);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #e05a2a;
    transform: scale(1.05);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

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

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

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

.btn-cookie:hover {
    background-color: #a8d10f;
}

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

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

.page-header {
    padding: 80px 20px 40px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    text-align: center;
}

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

.subtitle {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 300;
}

.about-story {
    padding: 60px 20px;
}

.story-block {
    margin-bottom: 60px;
}

.story-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.story-block p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.image-full {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
}

.image-full img {
    width: 100%;
    height: auto;
}

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

.values-section h2 {
    font-size: 34px;
    margin-bottom: 40px;
    text-align: center;
}

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

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

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

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.team-section h2 {
    font-size: 34px;
    margin-bottom: 50px;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-member {
    text-align: center;
}

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

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

.team-member h3 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.role {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 400px;
    margin: 0 auto;
}

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

.numbers-section h2 {
    font-size: 34px;
    margin-bottom: 50px;
}

.numbers-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.number-box {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.big-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.number-label {
    display: block;
    font-size: 15px;
    color: var(--text-light);
}

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

.cta-box-centered {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-box-centered h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.cta-box-centered p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.tours-intro {
    padding: 40px 20px;
    background-color: var(--bg-white);
}

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

.info-boxes h2 {
    font-size: 34px;
    margin-bottom: 50px;
}

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

.info-card {
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

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

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

.info-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

.contact-info > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

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

.contact-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 5px;
}

.small-text {
    font-size: 14px;
    color: #999;
}

.map-note {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.map-note p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.contact-image {
    border-radius: 8px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: auto;
}

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

.faq-section h2 {
    font-size: 34px;
    margin-bottom: 40px;
    text-align: center;
}

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

.faq-item {
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.legal-page {
    padding: 60px 20px;
    background-color: var(--bg-white);
}

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

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    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: 30px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.legal-page ul {
    margin: 15px 0 15px 30px;
}

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

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

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

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

.cookie-table td {
    font-size: 15px;
    color: var(--text-light);
}

.thanks-section {
    padding: 100px 20px;
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

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

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

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

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

.thanks-details p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

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

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

.steps-list li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.contact-info-box {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
    text-align: left;
}

.contact-info-box p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

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

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

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        padding: 0;
        border: none;
        box-shadow: none;
    }

    .hero-title {
        font-size: 56px;
    }

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

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

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

    .image-grid {
        flex-direction: row;
    }

    .grid-item {
        flex: 1;
    }

    .benefit-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 0 0 calc(50% - 15px);
    }

    .stats-row {
        flex-direction: row;
    }

    .testimonial-grid {
        flex-direction: row;
    }

    .testimonial-card {
        flex: 1;
    }

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

    .footer-section {
        flex: 1;
    }

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

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

    .value-item {
        flex: 0 0 calc(50% - 15px);
    }

    .team-grid {
        flex-direction: row;
    }

    .team-member {
        flex: 1;
    }

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

    .number-box {
        flex: 0 0 calc(33.333% - 14px);
    }

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

    .info-card {
        flex: 0 0 calc(33.333% - 20px);
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info {
        flex: 1;
    }

    .contact-image {
        flex: 1;
    }

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

    .btn-primary,
    .btn-secondary {
        display: inline-block;
        width: auto;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }

    .benefit-cards {
        flex-wrap: nowrap;
    }

    .benefit-card {
        flex: 1;
    }

    .value-item {
        flex: 0 0 calc(50% - 15px);
    }
}
