/* Global Styles */
:root {
    --primary-color: #E31937; /* Canadian red */
    --secondary-color: #0A2463; /* Dark blue */
    --accent-color: #FFCC33; /* Gold/yellow */
    --text-color: #333333;
    --light-text: #FFFFFF;
    --light-bg: #F8F9FA;
    --dark-bg: #1E1E1E;
    --border-color: #DDDDDD;
    --success-color: #28A745;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #c01830;
    color: var(--light-text);
}

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

.btn-secondary:hover {
    background-color: #081d52;
    color: var(--light-text);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

/* Header Styles */
header {
    background-color: var(--light-bg);
    box-shadow: var(--shadow);
    position: relative;
    padding: 1rem 0;
}

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

.logo svg, .logo img {
    max-height: 60px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links li a {
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    height: 24px;
    width: 30px;
    position: relative;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #c01830;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Destinations Section */
.destinations {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.destinations h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.featured-destinations .destination-grid{
	display: block
}

.destination-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
}

.destination-image {
    height: 200px;
    overflow: hidden;
}

.destination-image svg, .destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .destination-image svg,
.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-info {
    padding: 1.5rem;
}

.destination-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.destination-info p {
    margin-bottom: 1rem;
    color: #666;
}

/* Experiences Section */
.experiences {
    padding: 5rem 0;
}

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

.experience-slider {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    padding-bottom: 1rem;
}

.experience-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.experience-card {
    flex: 0 0 280px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.experience-card:hover {
    transform: scale(1.03);
}

.experience-image {
    height: 180px;
    overflow: hidden;
}

.experience-image svg, .experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-info {
    padding: 1.5rem;
}

.experience-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.experience-info p {
    color: #666;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--light-text);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.slider-controls button:hover {
    background-color: var(--primary-color);
}

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
}

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

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-text {
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    overflow: hidden;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-quote {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
    color: rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.contact-content {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-detail {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 24px;
    margin-right: 1rem;
    color: var(--primary-color);
}

.contact-text h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.form-check input {
    margin-right: 10px;
    margin-top: 5px;
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 0;
    background-color: var(--secondary-color);
    color: var(--light-text);
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.newsletter p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.newsletter form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter .form-group {
    display: flex;
}

.newsletter input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.newsletter button {
    border-radius: 0 4px 4px 0;
    font-size: 1rem;
}

.newsletter .form-check {
    justify-content: center;
    margin-top: 1rem;
}

.newsletter .form-check label {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 280px;
}

.footer-logo p {
    margin-top: 1rem;
    color: #999;
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 3rem;
}

.footer-nav, .footer-legal {
    flex: 1;
}

.footer-nav h3, .footer-legal h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-nav ul, .footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a, .footer-legal a {
    color: #999;
    transition: color 0.3s ease;
}

.footer-nav a:hover, .footer-legal a:hover {
    color: var(--light-text);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #999;
}

.footer-bottom a:hover {
    color: var(--light-text);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    max-width: 800px;
}

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

.cookie-buttons button {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

#accept-necessary {
    background-color: #f1f1f1;
    color: var(--text-color);
}

#accept-necessary:hover {
    background-color: #e1e1e1;
}

#accept-all {
    background-color: var(--primary-color);
    color: var(--light-text);
}

#accept-all:hover {
    background-color: #c01830;
}

#customize-cookies {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

#customize-cookies:hover {
    background-color: #081d52;
}

.custom-settings {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.custom-settings.hidden {
    display: none;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    font-weight: 600;
    margin-left: 0.5rem;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 2rem;
    font-size: 0.9rem;
    color: #666;
}

#save-cookie-settings {
    background-color: var(--success-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#save-cookie-settings:hover {
    background-color: #218838;
}

/* Thank You Page */
.thank-you {
    padding: 5rem 0;
    background-color: var(--light-bg);
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you h1 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.thank-you p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.next-steps {
    margin: 2rem 0;
    text-align: left;
    background-color: #f8f8f8;
    padding: 1.5rem;
    border-radius: 8px;
}

.next-steps h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.next-steps ul {
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.social-media {
    margin: 2rem 0;
}

.social-media h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: #f1f1f1;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
}

.return-home {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Page Banner */
.page-banner {
    position: relative;
    background-color: var(--secondary-color);
    color: #e31937;
    padding: 4rem 0;
    overflow: hidden;
}

.page-banner h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Destinations Page Styles */
.featured-destinations {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.featured-destinations h2,
.destination-categories h2,
.city-destinations h2,
.natural-wonders h2,
.travel-planning h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.destination-card.featured {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .destination-card.featured {
        flex-direction: row;
    }
    
    .destination-card.featured .destination-image {
        flex: 1;
        height: auto;
    }
    
    .destination-card.featured .destination-info {
        flex: 1;
    }
}

.destination-highlights {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.highlight-icon {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.destination-categories {
    padding: 5rem 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-image {
    height: 150px;
    margin-bottom: 1.5rem;
}

.category-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.category-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.city-destinations {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.natural-wonders {
    padding: 5rem 0;
}

.wonders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.wonder-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.wonder-image {
    height: 150px;
}

.wonder-card h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.2rem;
}

.wonder-card p {
    padding: 0 1rem 1rem;
    color: #666;
    font-size: 0.9rem;
}

.travel-planning {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.planning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.planning-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.planning-icon {
    margin-bottom: 1.5rem;
}

.planning-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.planning-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.text-link {
    font-weight: 600;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.text-link:hover {
    color: var(--primary-color);
}

.text-link:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.text-link:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* About Page Styles */
.our-story {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.story-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.story-text p {
    margin-bottom: 1.5rem;
}

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

.team {
    padding: 5rem 0;
}

.team h2,
.values h2,
.impact h2,
.partners h2,
.testimonials h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

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

.team-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.team-member h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.values {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.impact {
    padding: 5rem 0;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-icon {
    margin-bottom: 1rem;
}

.partners {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-logo {
    text-align: center;
}

.partner-logo p {
    margin-top: 1rem;
    font-weight: 600;
}

/* Contact Page Styles */
.contact-content {
    padding: 5rem 0;
}

.contact-grid {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

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

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

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: #666;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f1f1f1;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

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

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

.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.map-section {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

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

.map-container {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.map-section p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.faq-section {
    padding: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

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

.faq-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

/* Legal Pages */
.legal-content {
    padding: 5rem 0;
}

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

.legal-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.legal-header p {
    color: #666;
}

.legal-body {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.legal-body h2 {
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body h3 {
    margin: 1.5rem 0 0.8rem;
    font-size: 1.4rem;
}

.legal-body p {
    margin-bottom: 1rem;
}

.legal-body ul, .legal-body ol {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-body li {
    margin-bottom: 0.5rem;
}

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

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

.legal-body th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.legal-body address {
    margin: 1.5rem 0;
    font-style: normal;
    line-height: 1.8;
}

.legal-nav {
    padding: 3rem 0 5rem;
    background-color: var(--light-bg);
}

.legal-nav h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.legal-nav-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-nav-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 280px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.legal-nav-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.legal-nav-card p {
    color: #666;
}

/* Cookie Management Page */
.cookie-management {
    padding: 3rem 0 5rem;
    background-color: var(--light-bg);
}

.cookie-manager {
    max-width: 800px;
    margin: 2rem auto 0;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Recommended Section */
.recommended {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.recommended h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.recommended-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.recommended-image {
    height: 200px;
    overflow: hidden;
}

.recommended-image svg, .recommended-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recommended-info {
    padding: 1.5rem;
    text-align: center;
}

.recommended-info h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Blog Styles */
.blog-hero {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 5rem 0;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blog-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.blog-content {
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.blog-image {
    height: 300px;
    overflow: hidden;
}

.blog-image svg, .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-info {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.blog-info h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.blog-info p {
    margin-bottom: 1.5rem;
    color: #444;
    flex: 1;
}

/* Article Page */
.article-content {
    padding: 5rem 0;
}

.article-header {
    margin-bottom: 2rem;
}

.breadcrumbs {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #666;
}

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

.article-meta {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.article-meta span {
    margin-right: 1.5rem;
}

.article-featured-image {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.article-featured-image svg, .article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    margin-bottom: 3rem;
}

.article-intro {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.article-body h2 {
    margin: 2.5rem 0 1rem;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.article-body h3 {
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    color: var(--text-color);
}

.article-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.article-body ul, .article-body ol {
    margin: 0 0 1.5rem 2rem;
}

.article-body li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.article-tags span {
    font-weight: 600;
}

.article-tags a {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: #f1f1f1;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.article-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

.article-share {
    text-align: center;
    margin-bottom: 3rem;
}

.article-share h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: #f1f1f1;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.share-buttons a:hover {
    background-color: var(--primary-color);
    color: white;
}

.related-articles {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.related-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

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

.related-image {
    height: 180px;
    overflow: hidden;
}

.related-image svg, .related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-info {
    padding: 1.5rem;
}

.related-info h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .blog-card {
        flex-direction: column;
    }
    
    .blog-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav {
        width: 100%;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 100;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .menu-toggle {
        display: block;
        z-index: 101;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .destination-grid, .testimonial-grid, .related-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .legal-nav-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .experience-slider {
        padding: 0 1rem;
    }
    
    .newsletter .form-group {
        flex-direction: column;
    }
    
    .newsletter input {
        border-radius: 4px;
        margin-bottom: 1rem;
    }
    
    .newsletter button {
        border-radius: 4px;
        width: 100%;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .thank-you-content {
        padding: 2rem 1.5rem;
    }
    
    .return-home {
        flex-direction: column;
    }
    
    .article-featured-image {
        height: 250px;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body h3 {
        font-size: 1.3rem;
    }
}