/* Contact Page Styles */
.contact-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f5f5f5;
}

.contact-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}
header nav ul li a.active {
    color: #f39c12;
}

.contact-form, .contact-info {
    width: 45%;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h3, .contact-info h3 {
    margin-bottom: 15px;
    color: #333;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.contact-info i {
    margin-right: 10px;
    color: #007bff;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.social-icons a {
    color: white;
    background: #000000;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    text-decoration: none;
}

.map-container {
    margin: 30px auto;
    max-width: 1100px;
}

@media (max-width: 768px) {
    .contact-form, .contact-info {
        width: 100%;
        margin-bottom: 20px;
    }
}
.contact-icons {
    margin-top: 20px;
    font-size: 0.9em;
    color: #000000;
}
.footer-contact {
    margin-top: 20px;
    font-size: 0.9em;
    color: #ffffff;
}