/* ======================================
   VARIABLES ET RESET
====================================== */
:root {
    --primary: #4f81bd;
    --secondary: #4f65bd;
    --light: #F5F8F2;
    --dark: #252C30;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

section {
    padding: 0;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #444;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

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

/* ======================================
   HEADER ET NAVIGATION
====================================== */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.logo a {
    display: block;
}

.logo a img {
    max-height: 100px;
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
}


.nav-links {
    display: flex;
}

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

.nav-links a {
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

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

.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    padding: 10px 0;
    top: 100%;
    left: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-links li:hover .dropdown-menu,
.dropdown-menu.active {
    display: block; /* Show when active */
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    padding: 12px 20px;
    display: block;
    color: #333;
    font-weight: normal;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--primary);
    border-left: 3px solid var(--primary);
}

/* Dropdown arrow */
.has-dropdown > a::after {
    content: "▼";
    font-size: 10px;
    margin-left: 8px;
    vertical-align: middle;
    color: var(--primary);
    transition: transform 0.3s;
}

.has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

/* Mobile Styles for Header */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        height: 92vh;
        top: 8vh;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%; /* Full width for mobile */
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 1;
    }
    
    .nav-links li {
        opacity: 0;
        margin: 20px 0;
    }
    
    .burger {
        display: block;
        cursor: pointer;
    }
    
    .burger div {
        width: 25px;
        height: 3px;
        background-color: #333;
        margin: 5px;
        transition: all 0.3s ease;
    }
    
    .logo a img {
        max-height: 60px; /* Smaller logo for mobile */
        width: auto;
        height: auto;
    }
    
    .nav-active {
        transform: translateX(0%);
    }
    
    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0px);
        }
    }
    
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .toggle .line2 {
        opacity: 0;
    }
    
    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

/* ======================================
   intro SECTION
====================================== */
.intro {
    padding: 0;
    position: relative;
}

.intro-image {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

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

.intro-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
}

.intro-text h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.intro-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.tour-intro .container {
    position: relative;
    z-index: 1;
}

.tour-intro h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.tour-intro h2 {
    font-size: 1.8rem;
}

/* ======================================
   SECTIONS GÉNÉRALES
====================================== */
/* Section Deuxième image */
.second-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    padding: 0;
}

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

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
}

/* Section Description */
.description {
    background-color: #fff;
}

.description p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Section 6 petites images */
.small-images {
    background-color: #f5f5f5;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.image-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-item:hover {
    transform: translateY(-10px);
}

.image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.image-item h3 {
    padding: 15px;
    text-align: center;
}

/* Section Services avec boutons */
.featured-services {
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
    text-align: center;
}

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

.service-item h3 {
    margin-top: 15px;
}

.service-item p {
    padding: 0 20px;
    margin-bottom: 20px;
}

/* Section FAQ */
.faq {
    background-color: #f5f5f5;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

/* Section Localisation */
.location {
    background-color: #fff;
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.address {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.address i {
    color: var(--primary);
    margin-right: 10px;
}

.address h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Section Partenaires */
.partners {
    background-color: #f5f5f5;
}

.partners-logo {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.partners-logo img {
    height: 80px;
    margin: 20px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partners-logo img:hover {
    filter: grayscale(0%);
}

/* ======================================
   TOUR STYLES
====================================== */
/* Tour Description */
.tour-description {
    padding: 2rem 0 4rem;
}

.tour-intro {
    max-width: 100%;
    margin: 0;
    text-align: left;
}

.tour-intro .lead {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.credit {
    font-style: italic;
    text-align: right;
    font-size: 0.9em;
    color: #666;
}

.detail-section {
    margin-bottom: 30px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}

.detail-section h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.detail-section ul {
    padding-left: 20px;
}

.detail-section li {
    margin-bottom: 8px;
}

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

.btn-primary {
    background-color: #3498db;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #2980b9;
}

/* Tour Gallery */
.tour-gallery {
    background-color: #f5f5f5;
    padding: 50px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

/* Tour Media Section */
.tour-media {
    margin-bottom: 4rem;
}

/* Large Video Container */
.large-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

.large-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Images Row */
.images-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.images-row .image-item {
    flex: 1;
    min-width: 200px;
    max-width: calc(33.333% - 10px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 15px;
    position: relative;
    aspect-ratio: 16/9;
}

.images-row .image-item:hover {
    transform: translateY(-5px);
}

.images-row .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

/* Effet de zoom au survol pour voir plus de l'image */
.images-row .image-item:hover img {
    transform: scale(1.05);
}

/* Image modal */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 4px;
}

.image-modal.active {
    display: flex;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Tour Details */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #3498db;
}

/* Tour Details Grid */
.details-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 3rem;
    justify-content: center;
}

.detail-card {
    flex: 1 0 30%; /* Grow, don't shrink, and start at 30% width */
    max-width: 50%; /* Maximum width of 50% */
    min-width: 30%; /* Minimum width of 30% */
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; /* Include padding in width calculation */
}

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

.card-icon {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 1rem;
    text-align: center;
}

.detail-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-size: 1.5rem;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 0.5rem;
}

.detail-card ul {
    padding-left: 1.5rem;
}

.detail-card li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

/* Pricing Card */
.pricing-card {
    background-color: #f8f9fa;
    border: 2px solid #3498db;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 1rem 0 1.5rem;
    color: #3498db;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #6c757d;
}

/* ======================================
   SOCIAL BANNER
====================================== */
.social-banner {
    background-color: #f8f8f8;
    padding: 20px 0;
    border-bottom: 1px solid #eaeaea;
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.logo-column {
    flex: 0 0 8.33%;
    max-width: 8.33%;
    padding: 0 15px;
}

.hashtag-column {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.empty-column {
    flex: 0 0 41.67%;
    max-width: 41.67%;
}

.social-icons-column {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
    text-align: right;
}

.animated-logo img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hashtag-content p {
    margin: 5px 0;
    font-weight: 600;
    font-size: 1rem;
}

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

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

.social-icons-list {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons-list li {
    margin-left: 15px;
}

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

.social-icons-list a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.social-icons-list i {
    font-size: 1.2rem;
}

/* ======================================
   FOOTER
====================================== */
footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
    padding: 0 15px;
    align-self: flex-start;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    margin-top: 0;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.social-media a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.5rem;
    color: #fff;
    transition: color 0.3s ease;
}

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

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

.footer-section.links ul li a {
    transition: color 0.3s ease;
}

.footer-section.links ul li a:hover {
    color: var(--primary);
}

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

.footer-section.newsletter form {
    display: flex;
    margin-top: 20px;
}

.footer-section.newsletter input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.footer-section.newsletter button {
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

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

.about-image {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 0px;
    background-color: #f9f9f9;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-image img {
    border-radius: 20px;
    min-width: 100%;
    min-height: 100%;
}

.about-text {
    text-align: center;
    padding: 20px;
}

/* ======================================
   RESPONSIVE DESIGN
====================================== */
@media screen and (max-width: 1024px) {
    .image-grid, .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-section {
        flex: 0 0 calc(50% - 30px);
    }
    
    .detail-card {
        flex: 1 0 45%; /* On medium screens, take 45% width */
        max-width: 50%;
    }
    
    .logo-column {
        flex: 0 0 15%;
        max-width: 15%;
    }
    
    .hashtag-column {
        flex: 0 0 35%;
        max-width: 35%;
    }
    
    .empty-column {
        flex: 0 0 15%;
        max-width: 15%;
    }
    
    .social-icons-column {
        flex: 0 0 35%;
        max-width: 35%;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        height: 92vh;
        top: 8vh;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 1;
    }
    
    .nav-links li {
        opacity: 0;
        margin: 20px 0;
    }
    
    .burger {
        display: block;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .tour-intro h1 {
        font-size: 2.5rem;
    }
    
    .tour-intro h2 {
        font-size: 1.4rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .images-row {
        flex-direction: column;
    }
    
    .images-row .image-item {
        margin-bottom: 15px;
        max-width: 100%;
    }
    
    .images-row .image-item img {
        height: 200px;
    }
    
    .social-row {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-column, 
    .hashtag-column, 
    .empty-column, 
    .social-icons-column {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }
    
    .hashtag-content {
        text-align: center;
    }
    
    .social-icons-list {
        justify-content: center;
    }
    
    .social-icons-list li:first-child {
        margin-left: 0;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: rgba(245, 245, 245, 0.9);
        padding-left: 20px;
        width: 100%;
        border-radius: 0;
        transform: none;
        transition: max-height 0.3s ease-out;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
    }
    
    .nav-links li:hover .dropdown-menu {
        display: none; /* Hide on hover for mobile */
    }
    
    .dropdown-menu.active {
        display: block;
        max-height: 500px; /* Show when active class is added via JS */
    }
    
    .dropdown-menu a {
        padding: 10px 15px;
        border-left: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .dropdown-menu a:hover {
        border-left: none;
    }
    
    .has-dropdown > a::after {
        float: right;
        margin-top: 5px;
    }
    
    .detail-card {
        flex: 1 0 100%; /* On small screens, take full width */
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .image-grid, .services-grid, .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        flex: 0 0 100%;
    }
    
    .intro-text h1 {
        font-size: 2rem;
    }
    
    .intro-text p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .footer-section.newsletter form {
        flex-direction: column;
    }
    
    .footer-section.newsletter input, 
    .footer-section.newsletter button {
        width: 100%;
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .images-row .image-item img {
        height: 150px; /* Hauteur réduite sur très petits écrans */
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .gallery-item img {
        height: 200px;
    }
}

/* ======================================
   ANIMATIONS
====================================== */
/* Animation pour le menu mobile */
.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.language-filter {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 5px;
}
.language-filter form {
    display: flex;
    align-items: center;
}
.language-filter label {
    margin-right: 10px;
    font-weight: bold;
}
.language-filter select {
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #ddd;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(52, 73, 94, 0.95);
    color: white;
    padding: 15px 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

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

.cookie-content p {
    margin: 0;
    padding: 5px 0;
    flex: 1;
    min-width: 200px;
}

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

.btn-accept {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-accept:hover {
    background-color: #2980b9;
}

.btn-learn-more {
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
}

.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 20px;
}
.lang-link {
    display: flex;
    align-items: center;
    margin-left: 10px;
    padding: 5px;
    text-decoration: none;
    color: #333;
}
.lang-link.active {
    font-weight: bold;
    color: var(--primary);
}
.flag-icon {
    width: 20px;
    height: 15px;
    margin-right: 5px;
}

.contact-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #3498db;
}

.contact-intro {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #555;
    text-align: center;
}

.contact-info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-info-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.contact-info-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.additional-info {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.additional-info h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: left;
}

.additional-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.additional-info ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.additional-info li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .contact-info-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .additional-info {
        padding: 20px;
    }
}

.map-section {
    padding: 40px 0 60px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        min-width: 100%;
    }
}