
    :root {
        --primary-blue: #4361ee;
        --dark-slate: #1e293b;
        --light-slate: #64748b;
    }

    /* --- SECTION DESCRIPTION AVEC IMAGE BACKGROUND RESPONSIVE --- */
    .hosting_section {
        width: 100%;
        padding: 80px 0;
        background-image: url('/static/images/hosting-bg3.png');
        background-size: cover;      /* L'image couvre toute la zone sans se déformer */
        background-position: center; /* L'image reste centrée */
        background-repeat: no-repeat;
        min-height: 400px;
        display: flex;
        align-items: center;
    }

    .hosting_taital {
        font-weight: 800;
        color: #ffffff; /* Ajusté en blanc pour la lisibilité sur fond image */
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .hosting_text {
        font-size: 1.1rem;
        color: #f1f5f9;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    /* --- SECTION FEATURES (ICÔNES SANS STATIC) --- */
    .about_section {
        padding: 80px 0;
        background: #ffffff;
    }

    .about_box {
        background: #ffffff;
        padding: 40px 30px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border: 1px solid #f1f5f9;
        transition: 0.3s;
        height: 100%;
    }

    .feature-icon-circle {
        font-size: 35px;
        color: var(--primary-blue);
        background: #eef2ff;
        width: 70px;
        height: 70px;
        line-height: 70px;
        border-radius: 50%;
        margin: 0 auto 20px;
    }

    /* --- SECTION TARIFS --- */
    .pricing_section {
        padding: 90px 0;
        background-color: #f8fafc;
    }

    .pricing_box {
        background: #ffffff;
        padding: 40px;
        border-radius: 20px;
        border: 1px solid #e2e8f0;
        text-align: center;
        transition: 0.3s;
        margin-bottom: 30px;
    }

    .pricing_box:hover {
        transform: translateY(-10px);
        border-color: var(--primary-blue);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .dolor_text {
        font-size: 45px;
        font-weight: 800;
        color: var(--primary-blue);
        margin: 15px 0;
    }

    .signup_bt a {
        display: block;
        padding: 15px;
        background: var(--primary-blue);
        color: #fff;
        border-radius: 10px;
        font-weight: 700;
        text-decoration: none;
        transition: 0.3s;
    }

    /* --- RESPONSIVE ADJUSTMENTS --- */
    @media (max-width: 768px) {
        .hosting_section {
            background-size: cover;
            text-align: center;
            padding: 60px 20px;
        }
        .hosting_taital { font-size: 2.2rem; }
    }

