html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}


/* Style pour le cercle de l'image */
.circle-image {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-container {
    text-align: center;
}

.logo-container img {
    max-width: 100%;
    max-height: 100px;
    margin: 0 auto;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.content-text strong {
    font-weight: 600;
}

.filiale-logo {
    max-width: 250px;
}

.cercle-algentis {
    border: 10px solid #ffbb33;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .circle-image {
        max-width: 300px;
        margin-bottom: 1.5rem;
    }
}

