/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #F0E6D2;
    color: #000000;
    font-family: 'Open Sans', sans-serif; /* Fallback for Google Fonts */
    font-size: 16px;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Barlow', sans-serif; /* Fallback for Google Fonts */
    color: #365B6D;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 20px;
}

a, button {
    -webkit-transition: all 0.3s ease;
       -moz-transition: all 0.3s ease;
            transition: all 0.3s ease;
}

button, .btn {
    background-color: #365B6D;
    color: #FFFFFF;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

button:hover, .btn:hover {
    background-color: #4A7A96;
}

/* Header */
.site-header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    display: flex; /* Fallback not needed for modern browsers */
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.site-header .logo {
    font-family: 'Barlow', sans-serif;
    font-size: 24px;
    color: #365B6D;
    text-decoration: none;
}

.site-header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.site-header nav ul li a {
    color: #365B6D;
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
}

.site-header nav ul li a:hover {
    color: #4A7A96;
}

/* Footer */
.site-footer {
    background-color: #365B6D;
    color: #FFFFFF;
    padding: 40px 20px;
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.site-footer a {
    color: #FFFFFF;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

.site-footer .footer-slogan {
    font-family: 'Barlow', sans-serif;
}

.site-footer .footer-links ul {
    list-style: none;
}

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

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

.site-footer .copyright {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

/* General Section Styles */
.section {
    padding: 50px 20px;
    text-align: center;
}

.section-light {
    background-color: #FFFFFF;
}

.section-beige {
    background-color: #F0E6D2;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(to bottom, #F0E6D2, #FFFFFF);
}

.hero-section .wave-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23365B6D" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,245.3C960,224,1056,160,1152,149.3C1248,139,1344,181,1392,202.7L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    -webkit-animation: wave 10s linear infinite;
       -moz-animation: wave 10s linear infinite;
            animation: wave 10s linear infinite;
}

@keyframes wave {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1440px 0;
    }
}

@-webkit-keyframes wave {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1440px 0;
    }
}

@-moz-keyframes wave {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1440px 0;
    }
}

.hero-section img {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

.hero-section .btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Carousel */
.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel .slides {
    display: flex;
    -webkit-transition: transform 0.5s ease;
       -moz-transition: transform 0.5s ease;
            transition: transform 0.5s ease;
}

.carousel .slide {
    min-width: 100%;
    text-align: center;
}

.carousel .slide img {
    max-width: 100%;
    border-radius: 10px;
}

.carousel .slide p {
    margin-top: 10px;
    color: #365B6D;
    font-family: 'Barlow', sans-serif;
}

.carousel .nav-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
            transform: translateY(-50%);
}

.carousel .nav-arrows button {
    background: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.carousel .nav-arrows button:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Cards */
.card {
    background-color: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: transform 0.3s ease;
       -moz-transition: transform 0.3s ease;
            transition: transform 0.3s ease;
}

.card:hover {
    -webkit-transform: scale(1.05);
       -moz-transform: scale(1.05);
            transform: scale(1.05);
}

/* Feature Row */
.feature-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

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

.feature-row .feature-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

/* Tabs for Interactive Preview */
.tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-buttons button {
    padding: 10px 20px;
    background-color: #365B6D;
    color: #FFFFFF;
}

.tab-buttons button.active {
    background-color: #4A7A96;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content img {
    max-width: 100%;
    border-radius: 10px;
}

/* Accordion for FAQ */
.accordion-item {
    margin-bottom: 10px;
}

.accordion-item .accordion-title {
    background-color: #FFFFFF;
    color: #365B6D;
    padding: 15px;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Barlow', sans-serif;
}

.accordion-item .accordion-title:hover {
    background-color: #F0E6D2;
}

.accordion-item .accordion-content {
    display: none;
    padding: 15px;
    background-color: #FFFFFF;
    border-radius: 0 0 5px 5px;
}

.accordion-item.active .accordion-content {
    display: block;
}

/* Blog Grid */
.blog-grid {
    display: grid; /* Fallback not needed for modern browsers */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.blog-post {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
}

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

.blog-post h3 {
    padding: 15px;
}

.blog-post a {
    color: #365B6D;
    text-decoration: none;
}

.blog-post a:hover {
    text-decoration: underline;
}

/* Support Form Styles */
form input,
form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #365B6D;
    border-radius: 5px;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

form label {
    display: block;
    margin-bottom: 5px;
    color: #365B6D;
    font-family: 'Barlow', sans-serif;
}

form button {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
}

/* Masquer la nav et le bouton "Télécharger" en dessous de 768 px */
@media (max-width: 768px) {
    .site-header nav,
    .site-header .btn-group {
        display: none;
    }
}

