/* ============================
   LAYOUT GENERALE
============================ */

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}


/* ============================
   FOOTER
============================ */

#footer {
    background: #355866;
    color: #e6eef1;
    font-family: "Quicksand", sans-serif;
    text-align: center;
    padding: 12px 0;
    border-top: 3px solid #4d798b;
}

.footer-legal {
    font-size: 0.85rem;
    line-height: 1.4;
}

.footer-legal a {
    color: #e6eef1;
    font-weight: 500;
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* ============================
   PAGINE INTERNE – STILE MODERNO
============================ */

.page-hero {
    text-align: center;
    margin-bottom: 50px;
}

.page-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #355866;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #4d798b;
}

.section-block {
    margin: 60px 0;
}

.section-heading {
    font-size: 1.9rem;
    font-weight: 700;
    color: #355866;
    margin-bottom: 25px;
    text-align: center;
}

.section-intro {
    font-size: 1.15rem;
    margin-bottom: 30px;
    text-align: center;
    color: #4d798b;
}

.modern-list ul {
    padding-left: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ============================
   CARDS CORSI
============================ */

.course-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.course-card {
    flex: 1 1 calc(33% - 30px);
    background: #e6eef1;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #dce5e8;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.course-card h4 {
    margin-bottom: 12px;
    color: #355866;
    font-size: 1.3rem;
}

/* ============================
   MOBILE FIX — CARD PERFETTE
============================ */

@media (max-width: 900px) {

    .course-cards {
        gap: 18px;
        /* più compatte */
        margin-top: 25px;
    }

    .course-card {
        flex: 1 1 100%;
        /* UNA SOTTO L’ALTRA */
        padding: 18px;
        /* proporzionato */
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    }

    .course-card h4 {
        font-size: 1.15rem;
        margin-bottom: 10px;
    }
}

/* ============================
   CONTACT BOX
============================ */

.contact-box {
    margin-top: 45px;
    padding: 25px;
    background: #355866;
    color: #e6eef1;
    border-radius: 12px;
    text-align: center;
}

.modern-img {
    width: 100%;
    max-width: 750px;
    display: block;
    margin: 25px auto;
    border-radius: 12px;
}

.centered-link {
    text-align: center;
    margin-top: 25px;
}

.primary-link {
    background: #355866;
    color: #e6eef1;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.25s ease;
}

.primary-link:hover {
    background: #4d798b;
}