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

body {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 100%);
}

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

.hero-text {
    margin-bottom: 40px;
}

.main-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    display: block;
    color: white;
    margin-bottom: 10px;
}

.highlight-text {
    display: inline-block;
    background: white;
    padding: 10px 30px;
    border-radius: 40px;
    color: #FF6B6B;
    transform: rotate(-2deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 500;
}

.app-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.store-button {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.store-button:hover {
    transform: translateY(-3px);
    background: black;
    color: white;
}

.store-button i {
    font-size: 24px;
    margin-right: 8px;
}

.store-button span {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 0.9rem;
}

.mascotte-wrapper {
    position: relative;
    padding: 40px;
}

.mascotte-image {
    width: 400px;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatShape 8s infinite;
}

.shape:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
}

.shape:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -20px) rotate(180deg); }
}

@media (max-width: 991px) {
    .main-title {
        font-size: 3.5rem;
    }
    
    .mascotte-image {
        width: 300px;
    }
}

@media (max-width: 767px) {
    .main-title {
        font-size: 2.8rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
}

.square {
    width: 120px;
    height: 120px;
    background-color: #ffd54f;  /* Jaune pour les mascottes */
    margin: 0 auto 25px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.feature-card {
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

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

.btn-custom {
    background-color: #ffd54f;
    color: #333;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.faq {
    padding: 40px 20px;
}

.faq-container {
    max-width: 800px; /* Largeur maximale */
    margin: 0 auto; /* Centrer le conteneur */
    text-align: start; /* Centrer le texte */
}

.faq-container h1 {
    margin-bottom: 30px; /* Espacement en bas */
    font-size: 12 px; /* Taille de la police */
    color: #333; 
    padding: 20px;/* Couleur du texte */
}

.faq-item {
    border-bottom: 1px solid #ddd; /* Bordure entre les éléments */
}

.faq-question {
    background-color: transparent; /* Couleur de fond des questions */
    width: 100%; /* Largeur complète */
    padding: 15px; /* Espacement interne */
    text-align: left; /* Alignement à gauche */
    font-size: 12px; /* Taille de la police */
    border: none; /* Pas de bordure */
    cursor: pointer; /* Curseur en main */
    transition: background-color 0.3s; /* Transition de couleur */
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.334); /* Transparent blanc avec rgba */
}
.answer-content{
    padding: 20px;
    font-size: 12px;
    color: #333;
}
.faq-answer {
    max-height: 0; /* Masquer la réponse par défaut */
    overflow: hidden; /* Masquer le débordement */
    transition: max-height 0.3s ease; /* Transition pour l'expansion */
}

.faq-answer p {
    padding: 15px; /* Espacement interne */
    font-size: 16px; /* Taille de la police */
    color: #555; /* Couleur du texte */
}

footer {
    background-color: #f8f9fa;
    padding: 40px 0;
}

footer a {
    color: #333;
    margin: 0 10px;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
}

.features {
    background-color: white;
}

.how-it-works {
    background-color: #f8f9fa;
}

.step-item {
    padding: 20px;
    border-left: 3px solid #ffd54f;
    margin-left: 20px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.small {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.store-badge {
    height: 40px;
    margin: 10px;
}

.footer {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.footer-links a {
    margin: 0 10px;
    color: #333;
    text-decoration: none;
}

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

.package-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

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

.package-card.featured {
    border: 3px solid #ffd54f;
    position: relative;
}

.package-card.featured::before {
    content: "Plus populaire";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd54f;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.impact-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff7f6a;
    margin-bottom: 10px;
}

.impact-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Style amélioré pour le formulaire de contact */
.contact {
    background: #fff;
    padding: 40px 0;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('path/to/pattern.svg') repeat;
    opacity: 0.05;
    z-index: 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-control {
    border: 2px solid #eee;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    border-color: #ff7f6a;
    background: white;
    box-shadow: 0 0 0 4px rgba(255,127,106,0.1);
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    display: block;
    transition: all 0.3s ease;
}

.form-control:focus + .form-label {
    color: #ff7f6a;
}

/* Validation inline */
.form-control.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,...");
    padding-right: 40px;
}

.form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,...");
    padding-right: 40px;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
}

.btn-submit {
    background: #FF6B6B;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #FF4C4C;
}

.hero-banner {

    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 50px 0;
    overflow: hidden;
}

.banner-content {
    width: 100%;
}

.banner-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-line {
    transform: rotate(-5deg);
    margin: 10px 0;
    display: flex;
    justify-content: center;
}

.highlight {
    background: #ffd54f;
    padding: 15px 40px;
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    display: inline-block;
    transform: skew(-5deg);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
    animation: slideIn 0.5s ease-out forwards;
    opacity: 0;
}

.text-line:nth-child(1) .highlight {
    animation-delay: 0.2s;
}

.text-line:nth-child(2) .highlight {
    animation-delay: 0.4s;
    transform: rotate(5deg) skew(-5deg); /* Rotation inverse pour l'effet croisé */
}

.text-line.secondary .highlight {
    background: white;
    font-size: 1.5rem;
    animation-delay: 0.6s;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Hover effects */
.highlight:hover {
    transform: skew(-5deg) translateY(-5px);
    box-shadow: 8px 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .highlight {
        font-size: 2rem;
        padding: 12px 30px;
    }
    
    .text-line.secondary .highlight {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .highlight {
        font-size: 1.5rem;
        padding: 10px 20px;
    }
    
    .text-line.secondary .highlight {
        font-size: 1rem;
    }
}

/* Animations de défilement */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    animation: scaleIn 0.5s ease forwards;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ff7f6a;
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: #ffd54f;
    transform: translateY(-5px);
}

/* Styles pour la première section avec mascotte et animations */
.mascotte-container {
    position: relative;
    z-index: 2;
}

.mascotte-image {
    width: 300px;
    animation: bounce 2s infinite;
}

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

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    animation: float 6s infinite;
}

.shape:nth-child(1) { top: 20%; left: 10%; width: 50px; height: 50px; }
.shape:nth-child(2) { top: 40%; right: 20%; width: 40px; height: 40px; animation-delay: 1s; }
.shape:nth-child(3) { bottom: 30%; left: 30%; width: 30px; height: 30px; animation-delay: 2s; }
.shape:nth-child(4) { bottom: 20%; right: 10%; width: 45px; height: 45px; animation-delay: 3s; }

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

.cube {
    position: absolute;
    background: rgba(255, 213, 79, 0.1);
    animation: cubeFloat 10s infinite;
}

/* Styles pour les boutons store */
.store-button {
    display: inline-flex;
    align-items: center;
    background: #333;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    margin: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.store-button:hover {
    transform: translateY(-3px);
    color: white;
}

.store-button i {
    font-size: 24px;
    margin-right: 12px;
}

.store-button span {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-button small {
    font-size: 0.7em;
    opacity: 0.8;
}

/* Styles pour le formulaire amélioré */
.form-floating {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-control {
    height: 60px;
    padding: 1rem;
    border-radius: 15px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #ff7f6a;
    box-shadow: 0 0 0 4px rgba(255,127,106,0.1);
}

.form-select-container {
    position: relative;
}

.form-select {
    height: 60px;
    padding: 1rem;
    border-radius: 15px;
    border: 2px solid #eee;
    appearance: none;
    background: white;
    cursor: pointer;
    width: 100%;
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff7f6a 0%, #ffd54f 100%);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,127,106,0.4);
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes cubeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(100px, 50px) rotate(90deg); }
    50% { transform: translate(0, 100px) rotate(180deg); }
    75% { transform: translate(-100px, 50px) rotate(270deg); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.banner {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.strip-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-strip {
    position: absolute;
    background-color: #FFD93D;
    padding: 20px 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    white-space: nowrap;
    border-radius: 8px;
    border: 2px solid rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 100%;
}

.text-strip:first-child {
    text-align: center;
}

.text-strip:last-child {
    text-align: end;
    padding-right: 12rem;
}

.top-strip {
    transform: translate(-50%, 0%) rotate(-9deg);
    left: 39%;
    z-index: 2;
    color: #000;
    width: 127%;
}

.bottom-strip {
    transform: translate(-50%, -50%) rotate(5deg);
    top: 60%;
    left: 50%;
    z-index: 1;
    color: #000;
    width: 127%;
}

/* Effet de croisement pour le ruban */

/* Responsive adjustments */
@media (max-width: 768px) {
    .text-strip {
        padding: 15px 30px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 250px;
    }
    
    .text-strip {
        padding: 10px 20px;
        font-size: 16px;
    }
}

/* Styles pour la section témoignages */
.wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.wrapper .box {
    background: #fff;
    width: calc(33% - 10px);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    margin: 10px 0;
    transition: transform 0.3s ease;
}

.wrapper .box:hover {
    transform: translateY(-5px);
}

.wrapper .box i.quote {
    font-size: 20px;
    color: #FFD93D;
    margin-bottom: 10px;
}

.wrapper .box .content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}

.box .info .name {
    font-weight: 600;
    font-size: 17px;
    color: #333;
}

.box .info .job {
    font-size: 16px;
    color: #FFD93D;
    margin: 5px 0;
}

.box .info .stars {
    margin-top: 5px;
}

.box .info .stars i {
    color: #FFD93D;
}

.box .content .image {
    height: 75px;
    width: 75px;
    padding: 3px;
    background: #FFD93D;
    border-radius: 50%;
}

.content .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
}

@media (max-width: 1045px) {
    .wrapper .box {
        width: calc(50% - 10px);
    }
}

@media (max-width: 702px) {
    .wrapper .box {
        width: 100%;
    }
}

.smart-section {
    padding: 80px 0;
    color: white;
    overflow: hidden;
}

.smart-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.smart-content {
    flex: 1;
}

.smart-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
}

.smart-features {
    list-style: none;
}

.smart-features li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.smart-features li:before {
    content: "•";
    color: #FFD93D;
    font-size: 2rem;
    margin-right: 15px;
}

.smart-image {
    flex: 1;

    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
}

.smart-image img {
    width: 70%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .smart-container {
        flex-direction: column;
    }
    
    .smart-title {
        font-size: 2.8rem;
    }
    
    .smart-image {
        width: 100%;
        max-width: 400px;
    }
}

.mascotte-section {

    padding: 60px 0;
    text-align: center;
    overflow: hidden;
}

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

.mascotte-icon {
    font-size: 64px;
    margin-bottom: 30px;
    animation: bounce 2s infinite;
}

.mascotte-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
}

.title-line {
    background: rgba(255, 217, 79, 0.9);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.store-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.store-badge {
    background: #000;
    padding: 10px 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.store-badge:hover {
    transform: translateY(-3px);
}

.store-badge img {
    height: 40px;
}

@media (max-width: 768px) {
    .title-line {
        font-size: 1.8rem;
        padding: 12px 20px;
    }
    
    .store-badges {
        flex-direction: column;
        align-items: center;
    }
}

.store-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: "auto";
    height: 100%;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px;
    gap: 10px;
}   
.store-badges a {
    text-decoration: none;
    color: #333;
    font-size: 11px;
    font-weight: 600;


}
.store-badge img {
    width: 30px;
    height: auto;
}