/* BONUS SECTION */
.bonus-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.bonus-headline {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
}

.bonus-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    width: calc(50% - 10px); /* 50% de largeur sur les petits écrans moins la moitié du gap */
    max-width: 220px; /* Largeur maximale pour desktop */
    min-width: 150px; /* Largeur minimale pour éviter les cartes trop étroites */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 4px solid #d4af37;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bonus-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.bonus-item .price {
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 10px;
}

.bonus-item .description {
    font-size: 14px;
}

/* CTA SECTION */
.cta-section {
    padding: 60px 0;
    background-color: #1E3A8A;
    text-align: center;
}

.timer-container {
    margin-bottom: 30px;
}

.urgent {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

/* Media queries pour responsivité mobile */
@media screen and (max-width: 768px) {
    .bonus-list {
        gap: 15px;
    }
    
    .bonus-item {
        padding: 20px 15px;
        width: calc(50% - 8px);
    }
    
    .bonus-item h4 {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .bonus-list {
        gap: 10px;
    }
    
    .bonus-item {
        width: calc(50% - 5px);
        padding: 15px 10px;
        min-width: 130px;
    }
    
    .bonus-item h4 {
        font-size: 15px;
    }
    
    .bonus-item .price {
        font-size: 14px;
    }
    
    .bonus-item .description {
        font-size: 13px;
    }
}

@media screen and (max-width: 360px) {
    .bonus-list {
        gap: 8px;
    }
    
    .bonus-item {
        width: calc(50% - 4px);
        min-width: 120px;
        padding: 12px 8px;
    }
    
    .bonus-item h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .bonus-item .price {
        margin-bottom: 6px;
    }
    
    /* Style des icônes pour améliorer leur visibilité sur mobile */
    .bonus-item h4 i {
        font-size: 16px;
        margin-right: 3px;
    }
}

#countdown {
    background-color: #000;
    color: #d4af37;
    padding: 5px 10px;
    border-radius: 4px;
    font-family: monospace;
}

.cta-button {
    display: inline-block;
    background-color: #000;
    color: #d4af37;
    font-size: 20px;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: #d4af37;
    color: #000;
    transform: scale(1.05);
}

/* LEAD MAGNET SECTION */
.lead-magnet-section {
    padding: 80px 0;
    background-color: #f3f3f3;
    text-align: center;
}

.lead-magnet-section h3 {
    font-size: 18px;
    color: #1E3A8A;
    margin-bottom: 10px;
}

.lead-magnet-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

#lead-form {
    max-width: 500px;
    margin: 40px auto 0;
}

.form-group {
    margin-bottom: 15px;
}

#lead-form input,
#lead-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

#lead-form select {
    background-color: #fff;
}

.submit-button {
    background-color: #1E3A8A;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #058a4a;
}
