.hidden {
    display: none !important;
}

body.logged-in .subscription-bloc,
body.logged-in .login-bloc {
    display: none;
}


/* header */

.header-login-info {
    font-size: 14px;
    margin: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logout-btn {
    background: #0066ff;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    text-decoration: none;
}
.logout-btn:hover {
    background: #004db3;
    color: #fff;
}

.open-login {
        background: none !important;
    color: #000 !important;
    box-shadow: none !important;
}


/* Home page */

.section-container {
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 40px;
}

.main-title {
    font-size: 48px;
    font-weight: bold;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    margin-top: 60px;
    margin-bottom: 30px;
}

/* Services */
.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.service-box {
    flex: 1 1 220px;
    max-width: 250px;
    min-width: 220px;
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-box h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.service-box h3 span {
    display: block;
    margin-top: 8px;
    font-size: 18px;
}

.service-box p {
    color: #555;
    font-size: 15px;
    line-height: 1.5;
}

/* Pourquoi Nous Choisir */
.why-choose-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.why-box {
    flex: 1 1 250px;
    max-width: 300px;
    background: #f9f9f9;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.why-box h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.why-box p {
    color: #444;
    font-size: 15px;
    line-height: 1.5;
}
