/* Styles généraux */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

/* Section héros */
.hero-section {
    position: relative;
    height: 60vh;
    background: url('/static/gmu_vitrine/images/medical.png') no-repeat center center;
    /*background-color: #1E7FCB;*/
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
}

/* Cartes */
.card {
    border: none;
    border-radius: 10px;
    /*background: white;*/
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

/* Footer */
footer {
    background: #63a8ec;/*hsl(0, 0%, 2%);*/
    border-top: 1px solid #dee2e6;
    padding: 15px;
    font-size: 0.9rem;
}

/*Styles de la page contact*/

h1, h2 {
    color: #0056b3;
}
.contact-section {
    margin-bottom: 30px;
}
.contact-section h2 {
    border-bottom: 2px solid #0056b3;
    padding-bottom: 10px;
}
.contact-info {
    margin-left: 20px;
}
.contact-info p {
    margin: 10px 0;
}
.contact-info a {
    color: #0056b3;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}