/* Sfondo della pagina */
body {
    background-color: #EEDF00;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* --- Gestione Logo Responsive --- */

/* Versione Mobile (Smartphone) */
.logo-responsive {
    width: 85%;
    max-width: 360px;
    height: auto;
    margin-bottom: 10px;
}

/* Versione Tablet (sopra i 768px) */
@media (min-width: 768px) {
    .logo-responsive {
        max-width: 540px;
    }
}

/* Versione Desktop (sopra i 1200px) */
@media (min-width: 1200px) {
    .logo-responsive {
        max-width: 600px;
    }
}

/* --- Box informativi --- */
.info-box {
    background-color: #EEDF00;
    border-radius: 12px;
    padding: 2rem 1.8rem;
    height: 100%;
    text-align: left;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(0,0,0,0.08);
}

.box-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    padding-bottom: 0.7rem;
    border-bottom: 2px solid rgba(0,0,0,0.2);
    text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

.box-text {
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.75;
}

.box-text p {
    margin-bottom: 0.3rem;
}

/* Link nei box */
.box-text a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
}

.box-text a:hover {
    text-decoration: underline;
}
