/* Réinitialisation globale */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Appliquer un padding-top sur le body pour décaler tout le contenu */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    padding-top: 10vh; /* Hauteur de la barre de navigation en pourcentage de la hauteur de la fenêtre */
}

/* Section d'introduction */
.intro {
    padding: 50px 10%;
    background-color: #f5f5f7;
    color: #333;
}

.intro-content {
    text-align: center;
}

.intro h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Section Solutions */
.solutions {
    padding: 50px 10%;
    background-color: #fff;
    text-align: center;
}

.solutions h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.solutions p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
}

/* Les produits (prothèses fixes) */
.product {
    display: inline-block;
    text-align: center;
    width: 30%;
    margin-bottom: 30px;
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.product h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product p {
    font-size: 1rem;
    color: #666;
}

/* Section Matériaux */
.materials {
    padding: 50px 10%;
    background-color: #fff;
}

.materials h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.material-section h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.materials ul {
    list-style-type: none;
    font-size: 1.2rem;
    color: #333;
    padding: 0;
}

.materials li {
    margin-bottom: 10px;
}

/* Section Technologies */
.technologies {
    padding: 50px 10%;
    background-color: #f5f5f7;
}

.technologies h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.technologies ul {
    list-style-type: none;
    font-size: 1.2rem;
    color: #333;
    padding: 0;
}

.technologies li {
    margin-bottom: 10px;
}

/* Section Call to Action */
.cta {
    padding: 30px 10%;
    background-color: #0071e3;
    color: white;
    text-align: center;
}

.cta a {
    padding: 12px 25px;
    background-color: #fff;
    color: #0071e3;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    font-size: 1rem;
}

.cta a:hover {
    background-color: #005bb5;
    color: white;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 0.3rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Section Hero */
    .intro {
        padding: 50px 5%;
    }

    .solutions {
        padding: 30px 5%;
    }

    .product {
        width: 100%; /* Changer la largeur des produits à 100% pour les petits écrans */
        margin-bottom: 30px;
    }

    .product img {
        width: 100%; /* Les images prennent 100% de la largeur */
    }

    .cta a {
        font-size: 1.1rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .intro h1 {
        font-size: 2.5rem;
    }

    .intro p {
        font-size: 1rem;
    }

    .solutions {
        padding: 20px 5%;
    }

    .product img {
        width: 100%; /* Les images prennent 100% de la largeur */
    }

    .product h3 {
        font-size: 1.3rem;
    }

    .cta a {
        font-size: 1rem;
        padding: 10px 20px;
    }
}
.product-images {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
}

.product-images img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* Section Prothèses Amovibles */
.removable-prostheses h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.removable-prostheses p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
}
.removable-prostheses {
    padding: 50px 10%;
    background-color: #f5f5f7;
    text-align: center;
}