/* Variables de couleur inspirées du style du CIC */
:root {
    --main-blue: #004a7c; /* Bleu foncé */
    --light-blue: #007bff; /* Bleu plus clair pour l'accent */
    --background-color: #f4f7f6; /* Fond très léger */
    --text-color: #333;
    --progress-bar-bg: #e0e0e0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    padding: 40px;
    max-width: 600px;
    width: 90%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo-placeholder {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--main-blue);
    max-wi
}

/* NOUVELLE RÈGLE : Contrôle de la taille de l'image à l'intérieur du conteneur */
.logo-placeholder img {
    /* Assure que l'image ne dépasse jamais la largeur de son conteneur parent (600px max) */
    max-width: 100%; 
    /* Calcule automatiquement la hauteur pour maintenir les proportions de l'image */
    height: auto; 
    /* Optionnel : Si vous voulez limiter la hauteur du logo sur un grand écran */
    max-height: 120px; 
    /* Centre l'image si elle est plus petite que 100% de la largeur du conteneur */
    display: block; 
    margin: 0 auto;
}

h1 {
    font-size: 2.5em;
    color: var(--main-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}

.progress-bar-area {
    margin: 30px 0;
}

.progress-bar {
    width: 100%;
    background-color: var(--progress-bar-bg);
    border-radius: 5px;
    overflow: hidden;
    height: 20px;
    margin-bottom: 10px;
}

.progress {
    height: 100%;
    background-color: var(--light-blue);
    transition: width 0.4s ease-in-out;
}

.progress-text {
    font-size: 0.9em;
    color: var(--text-color);
    font-weight: 400;
}

.contact-info {
    margin-top: 20px;
    line-height: 1.6;
}

.contact-info a {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

footer {
    margin-top: 40px;
    font-size: 0.8em;
    color: #aaa;
}

/* Responsiveness pour les petits écrans */
@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }

    .container {
        padding: 20px;
    }
}