/* ---------------------------- */
/* PALETTE SOBASO */
:root {
    --orange: #FF6B00;
    --orange-dark: #e65c00;
    --blue: #0066CC;
    --gray-light: #f7f7f7;
    --gray-medium: #888;
    --gray-dark: #333;
    --white: #ffffff;
    --radius: 8px;
}

/* ---------------------------- */
/* GLOBAL */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: var(--gray-light);
    color: var(--gray-dark);
}

/* ---------------------------- */
/* CONTAINER PRINCIPAL */
.confirmation-container {
    max-width: 600px;
    margin: 60px auto;
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 6px solid var(--orange);
}

/* ---------------------------- */
/* ICONE CHECK */
.confirmation-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: var(--blue);
    color: #fff;
    font-size: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------------------------- */
/* TITRES */
.confirmation-container h1 {
    color: var(--blue);
    margin-bottom: 10px;
}

.confirmation-container h2 {
    font-size: 18px;
    color: var(--orange);
    margin-bottom: 20px;
}

/* ---------------------------- */
/* TEXTE */
.confirmation-container p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ---------------------------- */
/* BLOC ETAPES */
.steps {
    background: #fafafa;
    border-radius: var(--radius);
    padding: 20px;
    margin: 25px 0;
    text-align: left;
}

.steps li {
    margin-bottom: 10px;
    font-size: 14px;
}

/* ---------------------------- */
/* INFOS CLIENT */
.client-summary {
    background: #f2f6fb;
    border-left: 4px solid var(--blue);
    padding: 15px;
    text-align: left;
    font-size: 14px;
    border-radius: var(--radius);
    margin-bottom: 25px;
}

.client-summary strong {
    color: var(--blue);
}

/* ---------------------------- */
/* BOUTONS */
.actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.actions a {
    flex: 1;
    text-decoration: none;
    padding: 14px;
    border-radius: var(--radius);
    font-weight: bold;
    transition: 0.2s ease;
    text-align: center;
}

.btn-primary {
    background: var(--orange);
    color: #fff;
}

.btn-primary:hover {
    background: var(--orange-dark);
}

.btn-secondary {
    background: var(--blue);
    color: #fff;
}

.btn-secondary:hover {
    background: #004a99;
}

/* ---------------------------- */
/* RESPONSIVE */
@media (max-width: 600px) {
    .confirmation-container {
        margin: 30px 15px;
        padding: 25px 20px;
    }

    .actions {
        flex-direction: column;
    }
}
