:root {
    --primary-dark: #0d1b2a;
    --primary-blue: #007bff;
    --text-light: #e6f0ff;
    --accent: #00c9ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: var(--primary-dark);
    color: var(--text-light);
    transition: background-color 0.3s ease;
}

header {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #0a192f, #1d4e89);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Logo intégré au thème original */
.logo {
    width: 200px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--accent), #8a2be2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

header p {
    font-style: italic;
    opacity: 0.9;
}

section {
    padding: 3rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--accent);
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-blue), var(--accent));
    margin: 1rem auto;
    border-radius: 3px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 1rem;
    padding: 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

li:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.email-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.email-link:hover {
    text-shadow: 0 0 8px rgba(0, 207, 255, 0.6);
}

/* Styles d'état des services */
.status-indicator {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.status-green {
    background-color: #4CAF50; /* Vert */
}

.status-red {
    background-color: #F44336; /* Rouge */
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 2rem 1rem;
    }
}