/* Contact form styles */
#main-contact {
        align-items: center;
        display: flex;
        flex-direction: column;
        justify-content: center
}

.contact-form {
        background-color: #e6f3ff;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
        padding: 20px;
        width: 40%
}

.contact-form .form-group {
        margin-bottom: 15px
}

.contact-form label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px
}

.contact-form input,
.contact-form textarea {
        border-radius: 4px;
        border: 1px solid lightslategray;
        box-sizing: border-box;
        padding: 10px;
        width: 100%
}

.contact-form button {
        background-color: #5bc0de;
        border-radius: 4px;
        border: none;
        color: #fff;
        cursor: pointer;
        padding: 10px 15px
}

.contact-form button:hover {
        background-color: #31b0d5
}

/* Map section */
.map-section {
        height: 400px;
        width: 100%
}

#map {
        border: none;
        height: 100%;
        width: 100%
}

/* Responsive styles */
@media (max-width: 1200px) {
        .contact-form {
                width: auto !important
        }
}