body{
    background-color: #f5f5f5; /* Sfondo chiaro */
}
.contact-page {
    padding: 50px 20px;
    text-align: center;
    margin-top: 10px; /* Reduced from 120px since we now have title-container */
}

.contact-page h1 {
margin-top: 10px;
  font-size: 36px;
  color: #527ade; /* Colore blu dell'header */
  margin-bottom: 10px;
}

.contact-information {
    margin-bottom: 50px;
}

.contact-information h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.contact-information p {
    font-size: 18px;
    color: #666;
    margin: 10px 0;
    display: flex;
    justify-content: center; /* Centra icone e testo */
    align-items: center;
}

.contact-information i {
    margin-right: 10px;
    color: #527ade; /* Blu per le icone */
    font-size: 20px;
}

.contact-information a {
    color: #527ade;
    text-decoration: none;
}

.contact-information a:hover {
    color: #f2db2d; /* Giallo dell'hover */
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box; /* Include padding nella larghezza */
}

.form-group textarea {
    resize: vertical; /* Permette solo ridimensionamento verticale */
}

.contact-form button {
    background-color: #527ade;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.contact-form button:hover {
    background-color: #f2db2d; /* Giallo dell'hover */
    color: #527ade;
}
/* Stile per la mappa */
.map-container {
    max-width: 100%; /* Non supera i bordi del contenitore */
    margin: 0 auto; /* Centra e distanzia dal form */
    overflow: hidden; /* Evita overflow */
}

.map-container iframe {
    width: 100%; /* Si adatta al contenitore padre */
    height: 450px; /* Altezza fissa */
    border: 0; /* Rimuove bordo */
    display: block; /* Evita spazi indesiderati */
}

/* Media query per mobile */
@media (max-width: 768px) {
    .contact-page {
        margin-top: 10px; /* Spazio per l'header + pulsante su mobile */
        padding: 30px 10px;
    }

    .contact-page h1 {
        font-size: 28px;
    }

    .contact-information h2 {
        font-size: 20px;
    }

    .contact-information p {
        font-size: 16px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form h2 {
        font-size: 20px;
    }
}