/* gestione css corso arbitri e le sue info card:
    10.4 corso arbitri
*/
/* ------------------------------------------------------------
   10.4 CORSO ARBITRI
------------------------------------------------------------ */
/* ------------------------------------------------------------
   HERO
------------------------------------------------------------ */

.hero{
    padding:80px 20px;
    text-align:center;
    background:#003366;
    color:white;
}

.hero h2{
    font-size:2.4rem;
    margin-bottom:20px;
}

.hero p{
    max-width:800px;
    margin:0 auto 30px;
    font-size:1.15rem;
    line-height:1.7;
}


/* ------------------------------------------------------------
   PULSANTI ISCRIZIONE
------------------------------------------------------------ */

.course-button{
    display:inline-block;
    padding:14px 30px;
    background:#d6a437;
    color:#003366;
    text-decoration:none;
    font-weight:700;
    border-radius:8px;
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.course-button:hover{
    background:#e1b64b;
    transform:translateY(-2px);
    box-shadow:0 5px 12px rgba(0,0,0,.18);
}


/* ------------------------------------------------------------
   CONTENUTO DELLA PAGINA
------------------------------------------------------------ */

.page-content{
    max-width:1100px;
    margin:45px auto;
    padding:40px 45px;
    background:white;
    border-radius:15px;
    box-shadow:0 4px 15px rgba(0,0,0,.10);
}

.course-section{
    position:relative;
}


/* ------------------------------------------------------------
   TITOLI
------------------------------------------------------------ */

.section-title{
    color:#003366;
    margin-bottom:25px;
    text-align:left;
    font-size:1.9rem;
}

.course-section > p{
    line-height:1.8;
    font-size:1.05rem;
    color:#333;
    margin-bottom:18px;
}

.course-section > p:last-child{
    margin-bottom:0;
}

.course-section strong{
    color:#003366;
    font-weight:700;
}


/* ------------------------------------------------------------
   ACCENTO GRAFICO DEI BOX
------------------------------------------------------------ */

.course-section:not(.course-faq){
    border-left:6px solid #d6a437;
}


/* ------------------------------------------------------------
   FAQ
------------------------------------------------------------ */

.course-faq .section-title{
    text-align:center;
}

.faq{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-top:25px;
}

.faq-item{
    background:#f2f5f8;
    padding:22px 25px;
    border-radius:10px;
    border-left:5px solid #003366;
}

.faq-item h3{
    color:#003366;
    margin-bottom:8px;
    font-size:1.1rem;
}

.faq-item p{
    color:#444;
    line-height:1.7;
    margin:0;
}


/* ------------------------------------------------------------
   CTA FINALE
------------------------------------------------------------ */

.course-final-cta{
    margin-top:35px;
    padding-top:30px;
    border-top:1px solid #d6d6d7;
    text-align:center;
}

.course-contact-link{
    display:inline-block;
    margin:0 auto 25px;
    padding:12px 20px;

    color:#003366;
    background:transparent;

    border:2px solid #003366;
    border-radius:8px;

    text-decoration:none;
    font-size:1.05rem;
    font-weight:600;

    transition:
        color .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.course-contact-link:hover{
    color:#d6a437;
    border-color:#d6a437;
    transform:translateY(-2px);
}
