/**
 * Style sheet
 * @author Fernando Ferrandino 19-mar-2026
 * Per sostituire definire la singola pagina di accesso al servizio; limita gli stili strettamente necessari
 */

    body {
        margin: 0;
        font-family: Arial, Helvetica, sans-serif;
        background-color: #f4f6f9;
    }

	.header {
	    display: flex;
	    align-items: center;
	    gap: 20px;
	    background-color: #005ca9;
	    color: white;
	}
	
	.logo {
	    height: 80px;
	}

	/* Align image + text */
	.title {
	    margin: 0;
	    display: flex;
	    align-items: center;
	    gap: 15px;
	    font-size: 22px;
	}

    .header h1 {
        margin: 0;
        font-size: 22px;
    }

    /* MAIN CONTAINER */
    .container {
        text-align: center;
        padding: 50px 20px;
    }

    .container h2 {
        color: #003366;
        margin-bottom: 40px;
    }

    /* CARD GRID */
    .card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 900px;
        margin: auto;
    }

    /* CARD */
    .card {
        background: white;
        border-radius: 8px;
        padding: 30px 20px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        transition: 0.3s;
        cursor: pointer;
        border-top: 5px solid #005ca9;
    }

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

    .card h3 {
        color: #005ca9;
        margin-bottom: 15px;
    }

    .card p {
        color: #555;
        font-size: 14px;
    }

    /* BUTTON */
    .btn {
        margin-top: 20px;
        padding: 10px 20px;
        border: none;
        background-color: #005ca9;
        color: white;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
    }

    .btn:hover {
        background-color: #003f7a;
    }

    /* FOOTER */
    .footer {
        margin-top: 60px;
        background-color: #e6ecf2;
        padding: 15px;
        text-align: center;
        font-size: 12px;
        color: #333;
    }
