body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.header, .footer {
    background-color: #004d40;
    color: white;
    text-align: center;
    padding: 20px;
}

.main-image {
    display: block;
    margin: 20px auto;
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    margin-top: 20px;
    height: 100%;
    width: 100%;
    align-self: center;
}

.cosa-si-fa, .services, .pricing, .reception {
    width: 48%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.cosa-si-fa {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto 10px;
}

.cosa-si-fa h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.cosa-si-fa p {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 5px;
}


.reception {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

.reception p {
    width: 60%;
}

.reception img {
    width: 80%;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

th {
    background-color: #00897b;
    color: white;
}

.gallery {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}
.gallery img {
    width: 23%;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .content, .reception {
        width: 85%;
        flex-direction: column;
        align-items: center;
    }
    .services, .pricing, .gallery, .reception {
        width: 85%;
        max-width: 500px;
    }
    .cosa-si-fa p, .reception p {
        line-height: 1;
        font-size: 16px;
        margin: 0 0 10px 0;
    }
    .cosa-si-fa {
        margin-bottom: 0;
        width: 85%;
        max-width: 500px;
    }
    .gallery {
        width: 85%;
        display: block;
        margin-left: 3%;
    }
    .gallery img {
        width: 49%;
    }
    .reception {
        margin-top: 10px;
    }
}

@media (max-width: 450px) {
    .gallery {
        margin-left: 4%;
    }
}
