body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}
.container {
            display: flex;
            flex-wrap: wrap;
        }
.column {
            flex: 1;
            padding: 10px;
            min-width: 300px; /* Imposta una larghezza minima per le colonne */
        }
header {
    background-color: #BEBEBE;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 70px;
    height: auto;
    margin-right: 1rem;
    margin-left: 45px;
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

nav ul li {
    margin-left: 1rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007bff;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    text-align: center;
    margin-bottom: 2rem;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #007bff;
}

.subtitle {
    font-style: italic;
    color: #666;
    font-size: 24px;
}

.about, .services {
    margin-bottom: 2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.service-item {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-in-out;
    text-align: center;
    transition: transform 0.3s ease;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.service-item:hover {
    transform: translateY(-15px);
    /* [disabled]-webkit-box-shadow: #0e0; */
    /* [disabled]box-shadow: #0e0; */
}

.service-icon {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.team-member {
    margin-bottom: 2rem;
}

.member-photo {
    width: 200px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.contact-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

form {
    display: flex;
    flex-direction: column;
}

input, textarea, button {
    margin-bottom: 1rem;
    padding: 0.5rem;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero, .about, .services, .team-member {
    animation: fadeIn 1s ease-in-out;
}
