body {
  
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.building-description, .amenities-section, .contact-form {
    width: 85%;
    background-color: #fff;
    padding: 20px;
    margin-left:100px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.amenities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px;
}

.amenity img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

/* Contact Form Styling */
.contact-form {
    background: #fff;
    padding: 20px;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input {
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus {
    border-color: #007bff;
}

.contact-form button {
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
}

/* 📱 Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        align-items: stretch;
    }

    .building-description, .amenities-section, .contact-form {
        width: 95%;
    }
}

@media screen and (max-width: 480px) {
    .amenity img {
        width: 45px;
        height: 45px;
    }
}
