* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

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

.centre {
    text-align: center;
}

/* HERO */
.hero {
    background-color: #1a1a2e;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.badge {
    background-color: #e94560;
    color: white;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: white;
}

.sous-titre {
    color: #a8a8b3;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.btn-principal {
    background-color: #e94560;
    color: white;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
}

.btn-principal:hover {
    background-color: #c73652;
}

/* SECTIONS */
.section {
    padding: 60px 20px;
}

.section-sombre {
    background-color: #16213e;
    color: white;
}

.section-sombre h2 {
    color: white;
}

h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: #1a1a2e;
}

/* CARTES */
.cartes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.carte {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    width: 260px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
}

.carte-icone {
    font-size: 36px;
    margin-bottom: 12px;
}

.carte p {
    color: #555;
    line-height: 1.5;
}

/* TEMOIGNAGES */
.temoignage {
    text-align: left;
    border-left: 4px solid #e94560;
}

.temoignage p {
    font-style: italic;
    margin-bottom: 12px;
}

.auteur {
    color: #e94560;
    font-weight: bold;
    font-size: 14px;
}

/* CONTENU */
.liste-contenu {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contenu-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(255,255,255,0.05);
    padding: 16px;
    border-radius: 8px;
}

.check {
    color: #2ecc71;
    font-size: 20px;
    font-weight: bold;
    min-width: 24px;
}

.contenu-item p {
    color: #ffffff;
    font-size: 16px;
}

/* PRIX */
.prix-box {
    background-color: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.prix-gratuit {
    font-size: 48px;
    font-weight: bold;
    color: #2ecc71;
}

.prix-box p {
    color: #a8a8b3;
    font-size: 16px;
}

/* FORMULAIRE */
.formulaire {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 480px;
    margin: 24px auto 0;
}

.formulaire input,
.formulaire select {
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.formulaire input:focus,
.formulaire select:focus {
    border-color: #e94560;
}

.formulaire button {
    background-color: #e94560;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}

.formulaire button:hover {
    background-color: #c73652;
}

.sous-titre-small {
    color: #a8a8b3;
    font-size: 15px;
}

#message-form {
    text-align: center;
    font-size: 15px;
    min-height: 20px;
}

/* FOOTER */
footer {
    background-color: #1a1a2e;
    color: #a8a8b3;
    padding: 24px 20px;
    font-size: 14px;
}