/* ====== Impostazioni generali ====== */
body {
    background-color: #f7f5ed;
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* ====== Container principale ====== */
.container {
    margin-top: 30px;
    padding: 20px;
}

/* ====== Immagine profilo/logo ====== */
.img-top {
    width: 55%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

/* ====== Titoli e testi ====== */
h1 {
    font-size: 28px;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #333;
}

h4 {
    margin-bottom: 10px;
    color: #444;
}

/* ====== Pulsanti personalizzati ====== */
.btn-custom {
    background-color: #2190A4;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    height: 60px;
    width: 480px;
    margin: 10px auto;
    gap: 10px;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #18697a;
}

/* Icona nel pulsante */
.icon-container {
    font-size: 22px;
    min-width: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testo del pulsante */
.btn-custom span {
    flex-grow: 1;
    text-align: center;
    margin-right: 40px;
}
/* ====== Footer personalizzato ====== */
.footer {
    background-color: #2190A4;
    color: white;
    font-size: 12px;
    text-align: left;
    border-top: 1px solid #18697a;
}

.footer p {
    margin: 4px 0;
}


/* ====== Responsive ====== */
@media (max-width: 576px) {
    .btn-custom {
        width: 90%;
        font-size: 16px;
    }

    .img-top {
        width: 90%;
    }

    h1 {
        font-size: 22px;
    }

    h4 {
        font-size: 16px;
    }
}