body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

.container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #003399;
}

.info-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

/* Per il contenitore a tre colonne */
.row-content {
    display: flex;
    /* gap: 20px; */
}

.col-images img {
    max-width: 100%;
    max-height: 30%;
    border-radius: 8px;
    margin-bottom: 15px;
}

/* Footer Styling */
.footer {
    background-color: #003399;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    max-height: 60px;
    /* z-index per evitare che la mappa gli si sovrapponga */
    z-index: 1000;
}

.footer img {
    max-height: 40px;
}
