body {
    background-color: #f5f5f5;
}
.hero {
    text-align: center;
    padding: 50px;
    background-color: #e8f5e9;
}
.grid-section {
    padding: 40px;
}
.grid-section h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.grid-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}
.contacta-nos{
    background-color: #e8f5e9;
    padding: 40px;
    text-align: center;
}
.contacta-nos h2 {
    margin-bottom: 20px;
}
.contacta-nos p {
    margin-bottom: 30px;
}
.contacta-nos form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contacta-nos input, .contacta-nos textarea {
    width: 300px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contacta-nos button {
    padding: 10px 20px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.contacta-nos button:hover {
    background-color: #45a049;
}