* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f9; /* Fond très clair légèrement bleuté */
    color: #1e293b; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 650px;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(48, 102, 154, 0.1); /* Ombre aux tons bleus du logo */
    border: 1px solid rgba(48, 102, 154, 0.1);
    animation: fadeIn 1s ease-out;
}

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

.logo-container {
    margin-bottom: 30px;
}

.logo {
    max-width: 250px;
    height: auto;
}

h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #30669A; /* Bleu du logo */
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #64748b; 
    margin-bottom: 32px;
}

.loader {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

/* Alternance des couleurs du logo pour le loader */
.dot:nth-child(1) { background-color: #30669A; animation-delay: -0.32s; }
.dot:nth-child(2) { background-color: #D43936; animation-delay: -0.16s; }
.dot:nth-child(3) { background-color: #30669A; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #30669A; /* Bleu du logo */
    font-size: 1.05rem;
    font-weight: 500;
}

.contact-item svg {
    color: #D43936; /* Rouge du logo */
}

@media (max-width: 640px) {
    h1 { font-size: 1.8rem; }
    .container { padding: 40px 20px; }
    .contact-item { font-size: 0.95rem; }
}
