    li a.active {
    color: yellow; 
    border-bottom: 2px solidrgba(214, 231, 60, 0.55); /* Underline for active link */
}

body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}


h1 {
    margin: 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 25px;
    border-radius: 28px;
}

/* Contact Form Styles */
.contact-form {
    flex: 1 1 40%; /* Flex-grow, flex-shrink, flex-basis */
    background: white;
    padding: 20px;
    margin: 10px;
    border-radius: 28px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    margin-top: 0;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

/* Contact Information Styles */
.contact-info {
    flex: 1 1 30%;
    background: white;
    padding: 20px;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-info h2 {
    margin-top: 0;
}

/* Map Styles */
.map {
    flex: 1 1 100%;
    margin: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.map iframe {
    width: 100%;
    height: 350px; /* Set a height for the map */
    border: 0; /* Remove border */
}


.footer-column {
    margin: 20px 0;
}

.footer-column h3 {
    margin-top: 0;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin: 5px 0;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column; /* Stack elements vertically */
    }
    
    .contact-form, .contact-info {
        flex: 1 1 100%; /* Full width on small screens */
    }
}

.footer-section {
            margin-bottom: 10px;
        }
        .footer-section p {
            margin: 5px 0;
        }
        .footer-section i {
            margin-right: 8px;
            color: #007bff;
        }

        