/* ============================
   WRAPPER
============================ */

.cookie-wrapper {
    width: 90%;
    max-width: 1300px;
    margin: 20px auto;
}

/* ============================
   TITOLI
============================ */

.cookie-title-main {
    font-size: 2.6rem;
    color: #355866;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

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

/* ============================
   INDICE
============================ */

.doc-grid.cookie-index {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto 40px auto;
}

@media (max-width: 900px) {
    .doc-grid.cookie-index {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .doc-grid.cookie-index {
        grid-template-columns: 1fr;
    }
}

.doc-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #dce5e8;
    text-align: center;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
    text-decoration: none;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
    border-color: #2a6fa3;
    /* bordo blu sottile */
    background-color: #f7fbff;
    /* leggerissimo blu chiarissimo */
}

.doc-card h3 {
    color: #355866;
    font-size: 1.2rem;
    font-weight: 700;
}

/* ============================
   SEZIONI
============================ */

h2[id] {
    scroll-margin-top: 140px;
}

.cookie-content h2 {
    font-size: 1.8rem;
    color: #355866;
    margin-top: 40px;
    margin-bottom: 15px;
}

.cookie-content p,
.cookie-content ul {
    font-size: 1rem;
    color: #1e2f36;
    margin-bottom: 18px;
}

.torna-indice {
    color: #355866;
    font-weight: 600;
    text-decoration: underline;
    display: inline-block;
    margin-bottom: 28px;
}

.torna-indice:hover {
    color: #1a3a44;
}

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

.cookie-footer {
    text-align: center;
    margin: 40px 0;
    color: #355866;
    font-size: 0.95rem;
}

/* ============================
   PULSANTE
============================ */

.back-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-back-corsi {
    background: #355866;
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.btn-back-corsi:hover {
    background: #2a4650;
}