/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Assure que la page prend toute la hauteur de l'écran */
}

.container {
    max-width: 95%; /* Largeur maximale pour une meilleure lisibilité */
    width: 90%; /* Responsive */
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

header {
    text-align: center;
    padding: 20px;
    background-color: #0078d7;
    color: white;
    border-radius: 10px;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    font-size: 2em; /* Taille réduite pour s'adapter à la vue principale */
}

header p {
    font-size: 1em; /* Taille réduite */
}

main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

section:hover {
    transform: translateY(-5px);
}

h2 {
    color: #0078d7;
    font-size: 1.5em; /* Taille réduite */
}

.test-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0078d7;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.test-button:hover {
    background-color: #005bb5;
}

.coming-soon {
    font-weight: bold;
    color: #e74c3c;
    animation: pulse 1.5s infinite;
    text-align: center;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

footer {
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    background-color: #0078d7;
    color: white;
    border-radius: 10px;
    font-size: 0.9em; /* Taille réduite */
}