body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }

        .container {
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
			  background-color: #333;
				padding: 20px;
				
        }

        .responsive-image {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .button {
            background-color: #4CAF50;
            color: white;
            padding: 20px 40px;
            text-align: center;
            text-decoration: none;
            font-size: 24px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .button:hover {
            background-color: #45a049;
            transform: scale(1.05);
        }

        .navbar {
            background-color: #333;
            overflow: visible; /* Permet de rendre les sous-items visibles */
            display: flex;
            justify-content: center;
            padding: 10px 0;
        }
		h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8em; /* Ajustez la taille selon vos besoins */
    font-weight: bold;
    color: #333; /* Couleur neutre, ajustez selon le design */
    margin-bottom: 15px; /* Espacement en dessous */
    text-align: left; /* Aligner à gauche par défaut */
}

        .navbar a {
            color: white;
            text-decoration: none;
            padding: 14px 20px;
            display: block;
            font-size: 18px;
            transition: background-color 0.3s;
        }

        .navbar a:hover {
            background-color: #575757;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #444;
            min-width: 160px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1;
            top: 100%;
            left: 0;
        }

        .dropdown-content a {
            padding: 12px 16px;
            color: white;
            text-decoration: none;
            display: block;
        }

        .dropdown-content a:hover {
            background-color: #575757;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }
		 footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 15px 0;
            margin-top: 20px;
        }

        footer a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            font-size: 16px;
            transition: color 0.3s;
        }

        footer a:hover {
            color: #aaa;
        }

/* Section services en grille avec deux colonnes sur écran large */
.services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Une seule colonne en mode responsive */
@media (max-width: 768px) {
    .services {
        grid-template-columns: 1fr;
    }
}
.services img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Correction pour permettre le scrolling vertical */
body {
    overflow-y: auto;
}
.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}
