/* Basic Reset & Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Accents & Highlights */
.highlight {
    color: #E60026; /* SodModen Red */
}

/* --- Header --- */
header {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    color: #222;
}

.logo .logo-nainen {
    color: #E60026; /* SodModen Red */
}
.logo .logo-eu {
    font-size: 0.6em;
    color: #555;
    font-weight: 600;
    margin-left: 2px;
}


/* --- CTA Buttons --- */
.cta-button {
    display: inline-block;
    background-color: #E60026; /* SodModen Red */
    color: #fff;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 25px; /* Rounded */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(230, 0, 38, 0.3);
}

.cta-button:hover, .cta-button:focus {
    background-color: #c0001f; /* Darker Red */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(230, 0, 38, 0.4);
}

.header-cta {
    padding: 10px 20px;
    font-size: 15px;
}

/* --- Hero Section --- */
#hero {
    background: #fdf6f7 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><defs><radialGradient id="grad1" cx="50%" cy="0%" r="80%" fx="50%" fy="0%"><stop offset="0%" style="stop-color:rgba(255,200,200,0.3);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:1" /></radialGradient><radialGradient id="grad2" cx="50%" cy="100%" r="80%" fx="50%" fy="100%"><stop offset="0%" style="stop-color:rgba(255,200,200,0.2);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0);stop-opacity:1" /></radialGradient></defs><rect x="0" y="0" width="100%" height="100%" fill="url(%23grad1)"/><rect x="0" y="0" width="100%" height="100%" fill="url(%23grad2)"/></svg>'), 
                linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(255,255,255,0.1)); /* Subtle red smoke/cloud effect with CSS gradient and fallback */
    background-size: cover;
    padding: 60px 0;
    text-align: center;
    color: #333;
}

#hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-content {
    max-width: 600px;
}

#hero h1 {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #111;
}

#hero .subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
}

.hero-cta {
    padding: 15px 35px;
    font-size: 1.3em;
}

.hero-image-container {
    max-width: 450px; /* Control size of image container */
    width: 100%;
}
.hero-image {
    width: 100%;
    max-width: 400px; /* Actual image max width */
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


/* --- Benefits Section --- */
#benefits {
    padding: 60px 0;
    background-color: #fff;
}

#benefits h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #222;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 25px;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    color: #E60026; /* SodModen Red */
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #333;
}

.benefit-item p {
    font-size: 0.95em;
    color: #666;
}

/* --- Profile Gallery Section --- */
#profiles {
    padding: 60px 0;
    background-color: #f9f9f9; /* Light grey background */
}

#profiles h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #222;
}

.profile-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.profile-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.profile-image {
    width: 100%;
    height: 300px; /* Fixed height for consistency */
    object-fit: cover; /* Crop image to fit */
}

.profile-info {
    padding: 20px;
}

.profile-info h3 {
    font-size: 1.4em;
    margin-bottom: 5px;
    color: #333;
}

.profile-info p {
    color: #777;
    margin-bottom: 15px;
}

.profile-cta {
    width: 100%;
    padding: 10px 20px;
    font-size: 1em;
}
.gallery-cta-container {
    text-align: center;
    margin-top: 40px;
}

/* --- FAQ & Legal Section --- */
#faq-legal {
    padding: 60px 0;
    background-color: #fff;
}

#faq-legal h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #222;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item summary {
    font-size: 1.1em;
    font-weight: 600;
    padding: 15px 20px;
    cursor: pointer;
    background-color: #f9f9f9;
    list-style: none; /* Remove default marker */
    position: relative;
    color: #333;
}

.faq-item summary::-webkit-details-marker {
    display: none; /* Safari */
}

.faq-item summary::after { /* Custom marker */
    content: '+';
    color: #E60026;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4em;
    transition: transform 0.2s ease-in-out;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    padding: 15px 20px;
    background-color: #fff;
    font-size: 1em;
    color: #555;
    border-top: 1px solid #e0e0e0;
}

/* --- Footer --- */
footer {
    background-color: #222;
    color: #bbb;
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #E60026; /* SodModen Red */
}

.copyright {
    font-size: 0.85em;
}


/* --- Responsive Design --- */
@media (max-width: 992px) {
    #hero h1 {
        font-size: 2.4em;
    }
    #hero .subtitle {
        font-size: 1.1em;
    }
    .hero-cta {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 24px;
    }
    .header-cta {
        padding: 8px 15px;
        font-size: 14px;
    }

    #hero .container {
        flex-direction: column; /* Stack content and image */
    }
    #hero {
        padding: 40px 0;
        text-align: center; /* Center content on mobile */
    }
    .hero-content {
        text-align: center;
    }
    #hero h1 {
        font-size: 2em;
    }
     .hero-image-container {
        margin-top: 30px;
    }

    .benefits-grid, .profile-gallery-grid {
        grid-template-columns: 1fr; /* Stack items on smaller screens */
    }
    #benefits h2, #profiles h2, #faq-legal h2 {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    #hero h1 {
        font-size: 1.8em;
    }
    #hero .subtitle {
        font-size: 1em;
    }
    .hero-cta {
        padding: 12px 25px;
        font-size: 1em;
    }
    .footer-links a {
        display: block;
        margin: 5px 0;
    }
}

.language-switcher img {
  width: 16px; /* Encore plus petit */
  height: auto;
  margin: 0 4px; /* Un peu moins de marge pour les petits drapeaux */
  vertical-align: middle;
  border: 1px solid #eee; /* Optionnel */
}