

    .iframe-container {
        width: 100%;
        position: relative;
        overflow: hidden;  /* Ensure the iframe doesn't overflow the container */
    }

    #contactForm {
        width: 100%;
        border: none;
        height: auto;  /* This allows the iframe height to adjust */
        min-height: 500px;  /* Set a minimum height */
    }
    
.get-involved {
    text-align: center;
    margin: 20px 0;
}

.get-involved-link {
    color: #1e73be; /* Blue text color */
    text-decoration: none; /* Remove underline */
    font-size: 12px;
    font-weight: normal;
    transition: color 0.3s ease;
}

.get-involved-link:hover {
    color: #155a8a; /* Darker blue on hover */
    text-decoration: none; /* Optional: underline on hover */
}




#overlayfooter {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

#loaderfooter {
    display: none; /* Hidden by default */
    border: 0px solid #f3f3f3; /* Light grey */
    border-radius: 50%;
    border-top: 5px solid white; /* Top border color */
    width: 120px; /* Size of the loader */
    height: 120px; /* Size of the loader */
    animation: spin 2s linear infinite; /* Spinning animation */
    z-index: 1001; /* Keep z-index to ensure visibility */
}

/* Keyframes for spinning animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer {
    text-align: center;
    padding: 20px 0;
}

.footer-container {
    max-width: 100%; /* Table width */
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-section {
    flex: 1 1 300px; /* Adjust width as needed */
    margin: 10px;
    text-align: left;
}

.footer-heading {
    color: #1e73be; /* Blue color for headings */
    font-size: 16px; /* Adjust heading font size */
    margin-top: 0; /* Remove default margin */
    margin-bottom: 15px; /* Space below heading */
    font-family: Verdana;
}

.footer p {
    font-size: 12px; /* Adjust font size as needed */
    line-height: 1.6; /* Adjust line height for readability */
    margin-bottom: 10px;
}

.footer a {
    color: #1e73be; /* Blue color for links */
    text-decoration: none; /* Remove underlines from links */
}

.footer a:hover {
    text-decoration: underline; /* Underline links on hover */
}

.footer hr {
    width: 100%;
    border-bottom: 0.1px solid #f5f5f5; /* Light gray border bottom */
}
