/* Fichier: style.css */
/* Styles communs à toutes les versions */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.language-bar {
    background-color: #333;
    padding: 10px 20px;
    text-align: right;
    position: sticky;
    top: 0;
    z-index: 100;
}

.language-option {
    color: white;
    margin: 0 10px;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.language-option:hover {
    color: #f7931a;
}

.hero {
    background: linear-gradient(135deg, #f7931a 0%, #ff9500 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

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

.cta-button {
    display: inline-block;
    background-color: #ff9500;
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    margin: 20px 0;
    transition: all 0.3s;
    border: 2px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: white;
    color: #ff9500;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 50px 0;
}

.feature {
    flex: 1;
    min-width: 300px;
    margin: 15px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 50px;
    color: #f7931a;
    margin-bottom: 20px;
}

.testimonials {
    background-color: #f0f2f5;
    padding: 60px 20px;
    text-align: center;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto 30px;
    font-style: italic;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.author {
    font-weight: bold;
    color: #f7931a;
}

.faq {
    padding: 60px 20px;
    background-color: white;
}

.faq-item {
    margin-bottom: 20px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #f7931a;
}

.faq-question {
    font-weight: bold;
    color: #f7931a;
    margin-bottom: 10px;
    font-size: 18px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

footer a {
    color: #ff9500;
    text-decoration: none;
}

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

.bonus-badge {
    background: #ffd700;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin: 10px 0;
    font-size: 14px;
}

.extended-faq {
    background-color: #f0f2f5;
    padding: 60px 20px;
}

h1, h2, h3, h4 {
    color: #2c3e50;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 20px;
}

  /* Ajout de styles pour la section expérience */
.experience-section {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 30px;
        margin: 40px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
.experience-badge {
        background: #4CAF50;
        color: white;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.9em;
        display: inline-block;
        margin-bottom: 15px;
    }
.strategy-cards {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin: 25px 0;
    }
.strategy-card {
        flex: 1;
        min-width: 250px;
        background: white;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    }
.security-tips {
        background: #e3f2fd;
        border-left: 4px solid #2196F3;
        padding: 20px;
        margin: 25px 0;
    }


@media (max-width: 768px) {
    .features {
        flex-direction: column;
    }
    
    .hero {
        padding: 50px 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
}

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

.feature, .testimonial, .faq-item {
    animation: fadeIn 0.6s ease-out;
}
  