/* --- VARIABLES ET RESET --- */
:root {
    --text-blue: #69faff;
    --accent-green: #33ff33;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    color: var(--text-blue);
    /* On remet l'image de fond ici */
    background: #fff url('arriere_plan_vide_lolotech.png') no-repeat center center fixed;
    background-size: cover;
}
.logo {
    width: 300px; /* Un peu plus petit pour la lisibilité */
    height: auto;
    margin-top: 20px;
}
/* --- NAVIGATION --- */
.navbar {
    background: rgba(0, 0, 0, 0.5); /* Un petit fond sombre pour voir le menu */
    padding: 15px;
}

.navbar a {
    color: var(--accent-green);
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover {
    text-decoration: underline;
}
/* --- SERVICES --- */
.intro-text { font-size: 1.2rem; margin-bottom: 10px; }
.highlight-box { color: var(--accent-green); font-weight: bold; font-size: 1.3rem; margin-bottom: 30px; }

.services-grid {
    display: flex;          /* On passe en flexbox */
    flex-direction: column; /* On force l'alignement vertical (un sous l'autre) */
    gap: 20px;              /* L'espace entre les cartes */
    text-align: left;
    max-width: 800px;       /* Pour éviter que les cartes soient trop larges sur grand écran */
    margin: 0 auto;         /* Pour centrer le tout */
}

.service-card {
    background: rgba(0, 0, 0, 0.3); /* Boîte pour rendre le texte lisible sur l'image */
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    border: 1px solid var(--text-blue); /* Petite bordure fine bleue */
}
.why-us{
    background: rgba(0, 0, 0, 0.3); /* Boîte pour rendre le texte lisible sur l'image */
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
}
.why-us ul {padding-left: 20px;}
.why-us li { margin-bottom: 8px; }



.service-card h2 { color: var(--accent-green); font-size: 1.2rem; border-bottom: 1px solid #69faff33; padding-bottom: 10px; }
.service-card ul { padding-left: 20px; }
.service-card li { margin-bottom: 8px; }

/* --- BOUTON --- */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background: var(--accent-green);
    color: black;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px;
    transition: 0.3s;
}
.btn:hover { transform: scale(1.1); background: white; }

/* --- RESPONSIVE --- */
@media (max-width: 600px) {
    .logo { width: 200px; }
    .navbar a { margin: 0 5px; font-size: 0.9rem; }
}