/* Base Styles */
:root {
    --primary-color: #4a2caf;
    --secondary-color: #ff6b35;
    --accent-color: #00c2cb;
    --background-color: #f9f9f9;
    --dark-color: #2a2a2a;
    --light-color: #ffffff;
    --text-color: #333333;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

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

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

button, .cta-button, .submit-button {
    cursor: pointer;
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-weight: 600;
    transition: var(--transition);
    background-color: var(--primary-color);
    color: white;
}

button:hover, .cta-button:hover, .submit-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Header Styles */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Main Content Styles */
main {
    padding-top: 80px;
    min-height: calc(100vh - 320px);
}

/* Hero Section */
.hero, .blog-hero, .about-hero, .contact-hero {
    background: linear-gradient(135deg, #4a2caf 0%, #7a56d4 100%);
    color: var(--light-color);
    padding: 100px 5% 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.hero-content, .blog-hero-content, .about-hero-content, .contact-hero-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.hero-content h1, .blog-hero-content h1, .about-hero-content h1, .contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.hero-content p, .blog-hero-content p, .about-hero-content p, .contact-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 14px 28px;
    font-size: 1.1rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #ff8157;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    margin-left: 30px;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transform: perspective(1000px) rotateY(-15deg);
    transition: var(--transition);
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0);
}

/* Features Section */
.features {
    padding: 80px 5%;
    background-color: var(--light-color);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.feature-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.feature-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 3rem;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Popular Experiences Section */
.popular-experiences {
    padding: 80px 5%;
    background-color: var(--background-color);
}

.popular-experiences h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.experience-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.experience-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

.experience-card h3, .experience-card p {
    padding: 0 20px;
}

.experience-card h3 {
    margin-top: 20px;
    font-size: 1.3rem;
}

.experience-card p {
    margin-bottom: 20px;
    color: #666;
}

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

.read-more:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 5%;
    background-color: var(--light-color);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 -20px;
    padding: 20px;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    min-width: 300px;
    width: calc(33.333% - 40px);
    margin: 0 20px;
    scroll-snap-align: start;
}

.testimonial-content {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Blog Posts Section */
.blog-posts {
    padding: 60px 5%;
}

.blog-post {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-image {
    flex: 1;
    min-width: 300px;
}

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

.post-content {
    flex: 2;
    min-width: 300px;
    padding: 30px;
}

.post-meta {
    display: flex;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #777;
}

.post-date {
    margin-right: 20px;
}

.post-category {
    color: var(--primary-color);
    font-weight: 600;
}

.post-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.post-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.post-tags span {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 5px 10px;
    background-color: #f0f0f0;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #666;
}

/* About Section */
.about-story {
    padding: 60px 5%;
}

.story-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.story-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.story-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.story-content {
    flex: 2;
    min-width: 300px;
}

.story-content h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.story-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.our-mission {
    padding: 60px 5%;
    background-color: var(--background-color);
}

.mission-container h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.mission-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.mission-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.mission-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.mission-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Team Section */
.team-section {
    padding: 80px 5%;
    background-color: var(--light-color);
}

.team-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    padding-bottom: 20px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    margin-top: 20px;
    font-size: 1.3rem;
}

.team-member p {
    padding: 0 15px;
    margin-bottom: 5px;
}

.team-member p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
}

.team-member .social-icons {
    margin-top: 15px;
}

.team-member .social-icons a {
    display: inline-block;
    margin: 0 5px;
    color: #666;
    transition: var(--transition);
}

.team-member .social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Achievements Section */
.achievements {
    padding: 80px 5%;
    background-color: var(--background-color);
}

.achievements h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.achievements-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.achievement-item {
    display: flex;
    align-items: center;
    padding: 25px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.achievement-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
    margin-right: 25px;
    color: var(--primary-color);
}

.achievement-content h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

/* Contact Section */
.contact-information {
    padding: 60px 5%;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.info-icon {
    margin-right: 20px;
    color: var(--primary-color);
}

.info-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.social-connect {
    margin-top: 40px;
}

.social-connect h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    color: var(--primary-color);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.social-icons a:hover {
    transform: translateY(-5px);
    color: var(--light-color);
    background-color: var(--primary-color);
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.contact-form {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

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

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 44, 175, 0.2);
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.submit-button {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    background-color: var(--primary-color);
    color: var(--light-color);
    cursor: pointer;
}

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

/* Map Section */
.map-section {
    padding: 60px 5%;
    background-color: var(--background-color);
}

.map-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.map-container {
    position: relative;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.directions-button {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 10px 15px;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.directions-button:hover {
    background-color: #ff8157;
    color: var(--light-color);
}

/* FAQ Section */
.faq-section {
    padding: 60px 5%;
}

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

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Interesting Facts Section */
.interesting-facts {
    padding: 60px 5%;
    background-color: var(--background-color);
}

.interesting-facts h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.facts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.fact-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 25px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.fact-icon {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.fact-card p {
    color: #555;
    line-height: 1.6;
}

/* VR Checklist Section */
.vr-checklist {
    padding: 60px 5%;
}

.vr-checklist h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.checklist-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.checklist-item {
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.checklist-item input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.checklist-item label {
    cursor: pointer;
    line-height: 1.6;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
}

.modal-content {
    background-color: var(--light-color);
    margin: 10% auto;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 500px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}

.close-modal:hover {
    color: var(--dark-color);
}

.thank-you-message {
    text-align: center;
}

.thank-you-message svg {
    color: #4CAF50;
    margin-bottom: 20px;
}

.thank-you-message h2 {
    margin-bottom: 15px;
}

.thank-you-message p {
    margin-bottom: 25px;
}

.close-button {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 20px;
    z-index: 1500;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-content p {
    margin-bottom: 15px;
    text-align: center;
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.cookie-buttons button {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
}

#acceptCookies {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

#customizeCookies {
    background-color: transparent;
    border: 1px solid var(--light-color);
    color: var(--light-color);
}

#declineCookies {
    background-color: transparent;
    border: 1px solid var(--light-color);
    color: var(--light-color);
}

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

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 5% 20px;
}

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

.footer-logo {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

.footer-links, .footer-legal, .footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-content h3 {
    color: var(--light-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
}

.footer-content h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
}

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

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

.footer-content ul li a {
    color: #bbb;
    transition: var(--transition);
}

.footer-content ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-contact .social-icons {
    margin-top: 20px;
}

.footer-contact .social-icons a {
    background-color: #333;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .hero-content h1, .blog-hero-content h1, .about-hero-content h1, .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .features h2, .popular-experiences h2, .testimonials h2 {
        font-size: 2rem;
    }
    
    .testimonial {
        width: calc(50% - 40px);
    }
    
    .story-container, .contact-container {
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--light-color);
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: left 0.5s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero, .blog-hero, .about-hero, .contact-hero {
        padding: 80px 5% 60px;
        flex-direction: column;
    }
    
    .hero-content, .blog-hero-content, .about-hero-content, .contact-hero-content {
        margin-bottom: 40px;
    }
    
    .hero-image {
        margin-left: 0;
    }
    
    .feature-cards, .experience-grid, .mission-content {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card, .experience-card, .mission-item {
        width: 100%;
        max-width: 400px;
    }
    
    .testimonial {
        width: calc(100% - 40px);
    }
    
    .blog-post {
        flex-direction: column;
    }
    
    .post-image img {
        height: 250px;
    }
    
    .team-member {
        max-width: 280px;
    }
    
    .map-overlay {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .map-overlay p {
        margin-bottom: 10px;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1, .blog-hero-content h1, .about-hero-content h1, .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .features h2, .popular-experiences h2, .testimonials h2, .contact-info h2, .contact-form-container h2 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
