@import url('https://fonts.googleapis.com/css2?family=Figtree&display=swap');

html,
body {
    margin: 0;
    font-family: 'Figtree';
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-top: 4%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7%;
    width:95%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0 20px;
}

.navbar .logo-left,
.navbar .logo-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
}

.logo-left {
    left: 1%;
    width:13%
}

.logo-right {
    right: 1%;
    width:13%
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    position: relative;
    padding: 8px 16px;
    color: #12A44F;
    text-decoration: none;
    font-weight: 300;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-links a.active {
    background-color: #12A44F;
    color: white;
    border-color: #12A44F;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 50px;
}

.nav-links a:not(.active):hover {
    background-color: #e6f2e9;
    border-radius: 20px;
}

main {
    padding-top: 70px;
}

/* Hamburger menu icon */
.menu-icon {
    display: none;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 25px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
}

.menu-icon div {
    width: 100%;
    height: 3px;
    background-color: #12A44F;
    border-radius: 2px;
}

#contact {
    margin: 0;
    padding: 0;
    height: 10%;
    width: 100%;
}

#contact_header {
    text-align: center;
    position: relative; 
    /* overflow: hidden; */
    height: 100%;
}

.title, .desc, .contact-content-wrapper {
    position: relative;
    z-index: 1;
}

.title {
    width: 100%;
    text-align: center;
    color: #12A44F;
    font-size: 4em;
    letter-spacing: 2px;
    margin-top: 0;
}

.desc {
    display: inline-block; 
    width: auto;
    padding: 15px 30px;
    margin: 0 auto;
    background-color: #12A44F;
    color: white;
    font-size: 1.5em;
    text-align: center;
    border-radius: 50px;
    position: relative;
    z-index: 2;
}

.contact-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 80%;
    height:900px;
    margin: 40px auto;
    margin-bottom:-70px;
    padding-bottom: 20px;
    background-color: #CFECD9;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
    top: -70px;
}

.illus-container {
    flex: 1;
    max-width: 30%;
}

.illus {
    width: 100%;
    height: auto;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 50%;
    text-align: left;
}

.contact-form label {
    margin-bottom: 2%;
    color: #5A5A5A;
    font-size: 1.5em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #5a5a;
    box-sizing: border-box;
    font-family: 'Figtree', sans-serif;
    font-size: 1rem;
}
.contact-form textarea {
    height: 200px;
    resize: none;
}

.contact-form button {
    background-color: #12A44F;
    color: white;
    border: none;
    margin: 10px auto 0 auto;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    align-self: center;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #0e8640;
}

.graphics {
    display: block;
    margin: 0 auto;
    margin-bottom: 1%;
}

#footer {
    background-image: url(../home/footer_bg.png);
    color: #ffffff;
    padding: 30px 20px;
    text-align: center;
    font-size: 1.3em;
}

.footer-content-wrapper {
    position: relative;
    z-index: 1;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bi.bi-facebook {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.contact-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.contact-item p,
.footer-copyright {
    margin: 0;
}
.footer-contact-info a {
    text-decoration: none;
    color: white;
}

/* Responsive styles */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
    #contact {
        margin-bottom: 50px;
        padding: 0;
        height: 10%;
        width: 100%;
    }

    #contact_header {
        text-align: center;
        position: relative; 
        /* overflow: hidden; */
        height: 10%;
    }
    .contact-content-wrapper {
        padding: 40px;
    }
    
    .graphics {
        display: block;
        margin: 0 auto;
        margin-top: 1%;
        width:100%;
    }
}
@media screen and (min-width: 900px) and (max-width: 1024px) {
    html, body {
        overflow-x: hidden;
    }
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 7%;
        width:95%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 0 20px;
    }

    .navbar .logo-left,
    .navbar .logo-right {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        height: 40px;
    }

    .logo-left {
        left: 2%;
        width:12%
    }

    .logo-right {
        right: 2%;
        width:12%
    }

    .nav-links {
        display: flex;
        gap: 1px;
        width:10%;
        align-items: center;
        justify-content: center;
        
    }

    .nav-links a {
        position: relative;
        padding: 8px 16px;
        color: #12A44F;
        text-decoration: none;
        font-weight: 300;
        border-radius: 8px;
        transition: background-color 0.3s, color 0.3s;
    }

    .nav-links a.active {
        background-color: #12A44F;
        color: white;
        border-color: #12A44F;
        font-weight: 600;
        padding: 10% 15%;
        border-radius: 50px;
    }

    .nav-links a:not(.active):hover {
        background-color: #e6f2e9;
        border-radius: 20px;
    }
    
    #contact {
        margin: 0;
        padding: 0;
        height: 10%;
        width: 100%;
    }

    #contact_header {
        text-align: center;
        position: relative; 
        /* overflow: hidden; */
        height: 10%;
    }
    
    .title, .desc, .contact-content-wrapper {
        position: relative;
        z-index: 1;
        height:10%;
    }
    
    .title {
        width: 100%;
        text-align: center;
        color: #12A44F;
        font-size: 4em;
        letter-spacing: 2px;
        margin-top: 5%;
        margin-bottom:3%;
    }
    
    .desc {
        display: inline-block; 
        width: auto;
        padding: 15px 30px;
        margin: 0 auto;
        margin-bottom:1vw;
        background-color: #12A44F;
        color: white;
        font-size: 1.5em;
        text-align: center;
        border-radius: 50px;
        position: relative;
        z-index: 2;
    }
    
    .contact-content-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        max-width: 80%;
        margin: 40px auto;
        background-color: #CFECD9;
        border-radius: 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
        height: 800px;
        top: -100px;
        padding: 40px;
    }
    
    .illus-container {
        flex: 1;
        max-width: 30%;
    }
    
    .illus {
        width: 100%;
        height: auto;
    }
    
    .contact-form {
        flex: 1;
        display: flex;
        flex-direction: column;
        max-width: 50%;
        text-align: left;
        margin-top:1%
    }
    
    .contact-form label {
        margin-bottom: 2%;
        color: #5A5A5A;
        font-size: 1.5em;
    }
    
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 20px;
        border-radius: 8px;
        border: 1px solid #5a5a;
        box-sizing: border-box;
        font-family: 'Figtree', sans-serif;
        font-size: 1rem;
    }
    .contact-form textarea {
        height: 200px;
        resize: none;
    }
    
    .contact-form button {
        background-color: #12A44F;
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1.1rem;
        font-weight: 600;
        align-self: center;
        transition: background-color 0.3s;
    }
    
    .contact-form button:hover {
        background-color: #0e8640;
    }
    
    .graphics {
        display: block;
        margin-bottom:10%;
        scale: 0.9;
        width: 100%;
        margin-top:-13%;
    }
    

    #footer {
        background-image: url(../home/footer_bg.png);
        color: #ffffff;
        padding: 30px 20px;
        text-align: center;
        font-size: 1.3em;
        overflow-wrap: anywhere;
    }
    
    .footer-content-wrapper {
        position: relative;
        z-index: 1;
        overflow-wrap: anywhere;
    }
    
    .footer-contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
        overflow-wrap: anywhere;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .contact-icon {
        width: 24px;
        height: 24px;
        filter: brightness(0) invert(1);
    }
    
    .contact-item p,
    .footer-copyright {
        margin: 0;
    }
    .footer-contact-info a {
        text-decoration: none;
        color: white;
    }

}
@media screen and (min-width: 500px) and (max-width: 900px) {
    html, body {
        overflow-x: hidden;
        padding-top: 50px;
    }
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        ;
        height: 60px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 0 15px;
    }

    .navbar .logo-left {
        position: static;
        left: auto;
        transform: none;
        height: 40px;
        width: auto;
        order: 1;
        margin-right: 10px;
    }

    .navbar .logo-right {
        position: static;
        right: auto;
        transform: none;
        height: 40px;
        width: auto;
        order: 2;
        margin-right: auto;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: none;
        border-radius: 0;
        gap: 0;
        z-index: 999;
        order: 4;
        box-sizing: border-box;
    }

    .nav-links.show {
        max-height: 400px;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        padding: 20px 0;
    }

    .nav-links a {
        padding: 15px 20px;
        width: calc(100% - 40px);
        max-width: 100%;
        text-align: center;
        border-radius: 0;
        font-weight: 500;
        font-size: 18px;
        color: #12A44F;
        background: none;
        display: block;
        margin: 5px 20px;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links a.active {
        background-color: #12A44F;
        color: white;
        border-radius: 25px;
        font-weight: 600;
        
    }

    .nav-links a:not(.active):hover {
        background-color: #e6f2e9;
        border-radius: 25px;
    }

    .menu-icon {
        display: flex;
        position: relative;
        width: 30px;
        height: 24px;
        cursor: pointer;
        flex-shrink: 0;
        order: 3;
        background-color: transparent;
        justify-content: center;
        align-items: center;
        top: 1.5vh;
    }

    .menu-icon span,
    .menu-icon::before,
    .menu-icon::after {
        display: block;
        width: 30px;
        height: 3px;
        background-color: #12A44F;
        border-radius: 1px;
        transition: all 0.3s ease;
        position: absolute;
        left: 0;
    }

    .menu-icon::before,
    .menu-icon::after {
        content: '';
    }

    .menu-icon::before {
        top: 0;
    }

    .menu-icon span {
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-icon::after {
        bottom: 0;
    }

    .menu-icon.active span {
        opacity: 0;
    }

    .menu-icon.active::before {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .menu-icon.active::after {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    #contact {
        margin: 0;
        padding: 0;
        height: 100%;
        width: 100%;
    }

    #contact_header {
        text-align: center;
        position: relative; 
        /* overflow: hidden; */
        height: 10%;
    }
    
    .title, .desc, .contact-content-wrapper {
        position: relative;
        z-index: 1;
    }
    
    .title {
        width: 100%;
        text-align: center;
        color: #12A44F;
        font-size: 3em;
        letter-spacing: 2px;
        margin-top: 0;
    }
    
    .desc {
        display: inline-block; 
        width: auto;
        padding: 15px 30px;
        margin: 0 auto;
        margin-bottom: 10px;
        background-color: #12A44F;
        color: white;
        font-size: 1.2em;
        text-align: center;
        border-radius: 50px;
        position: relative;
        z-index: 2;
    }
    
    .contact-content-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        max-width: 80%;
        margin: 40px auto;
        margin-bottom: 1px;
        background-color: #CFECD9;
        border-radius: 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
        height: auto;
        top: -70px;
        padding: 40px;
    }
    
    .illus-container {
        flex: 1;
        max-width: 30%;
    }
    
    .illus {
        width: 100%;
        height: auto;
    }
    
    .contact-form {
        flex: 1;
        display: flex;
        flex-direction: column;
        max-width: 50%;
        text-align: left;
    }
    
    .contact-form label {
        margin-bottom: 2%;
        color: #5A5A5A;
        font-size: 1.2em;
    }
    
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 20px;
        border-radius: 8px;
        border: 1px solid #5a5a;
        box-sizing: border-box;
        font-family: 'Figtree', sans-serif;
        font-size: 1rem;
    }
    .contact-form textarea {
        height: 200px;
        resize: none;
    }

    .g-recaptcha {
        transform: scale(0.77);
        -webkit-transform: scale(0.847);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
        align-self:center;
    }
    
    .contact-form button {
        background-color: #12A44F;
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1.1rem;
        font-weight: 600;
        align-self: center;
        transition: background-color 0.3s;
    }
    
    .contact-form button:hover {
        background-color: #0e8640;
    }
    
    .graphics {
        display: block;
        margin: 10% auto;
        scale: 0.9;
        width: 100%;
        margin-top:-10%;
    }
}

@media screen and (min-width:376px) and (max-width: 500px) {
    html, body {
        overflow-x: hidden;
        padding-top: 50px;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 0 15px;
    }

    .navbar .logo-left {
        position: static;
        left: auto;
        transform: none;
        height: 30px;
        width: auto;
        order: 1;
        margin-right: 10px;
    }

    .navbar .logo-right {
        position: static;
        right: auto;
        transform: none;
        height: 30px;
        width: auto;
        order: 2;
        margin-right: auto;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: none;
        border-radius: 0;
        gap: 0;
        z-index: 999;
        order: 4;
        box-sizing: border-box;
    }

    .nav-links.show {
        max-height: 400px;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        padding: 20px 0;
    }

    .nav-links a {
        padding: 15px 20px;
        width: calc(100% - 40px);
        max-width: 100%;
        text-align: center;
        border-radius: 0;
        font-weight: 500;
        font-size: 18px;
        color: #12A44F;
        background: none;
        display: block;
        margin: 5px 20px;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links a.active {
        background-color: #12A44F;
        color: white;
        border-radius: 25px;
        font-weight: 600;
        padding-bottom: 20px;
    }

    .nav-links a:not(.active):hover {
        background-color: #e6f2e9;
        border-radius: 25px;
    }

    .menu-icon {
        display: flex;
        position: relative;
        width: 30px;
        height: 24px;
        cursor: pointer;
        flex-shrink: 0;
        order: 3;
        background-color: transparent;
        justify-content: center;
        align-items: center;
        top: 1.5vh;
    }

    .menu-icon span,
    .menu-icon::before,
    .menu-icon::after {
        display: block;
        width: 30px;
        height: 3px;
        background-color: #12A44F;
        border-radius: 1px;
        transition: all 0.3s ease;
        position: absolute;
        left: 0;
    }

    .menu-icon::before,
    .menu-icon::after {
        content: '';
    }

    .menu-icon::before {
        top: 0;
    }

    .menu-icon span {
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-icon::after {
        bottom: 0;
    }

    .menu-icon.active span {
        opacity: 0;
    }

    .menu-icon.active::before {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .menu-icon.active::after {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    #contact {
        margin-bottom: 6%;
        padding: 0;
        height: 100%;
        width: 100%;
    }

    #contact_header {
        text-align: center;
        position: relative; 
        /* overflow: hidden; */
        height: 10%;
    }
    
    .title, .desc, .contact-content-wrapper {
        position: relative;
        z-index: 1;
    }
    
    .title {
        width: 100%;
        text-align: center;
        color: #12A44F;
        font-size: 3em;
        letter-spacing: 2px;
        margin-top: 0;
    }
    
    .desc {
        display: inline-block; 
        width: 60%;
        padding: 15px 30px;
        margin: 0 auto;
        background-color: #12A44F;
        color: white;
        font-size: 1em;
        text-align: center;
        border-radius: 50px;
        position: relative;
        z-index: 2;
    }
    
    .contact-content-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 90%;
        margin: 40px auto;
        background-color: #CFECD9;
        border-radius: 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
        height: auto;
        top: -60px;
        padding: 40px;
        box-sizing: border-box;
    }
    
    /* Hide the illustration container completely */
    .illus-container {
        display: none;
    }
    
    /* Make the form take full width */
    .contact-form {
        flex: 1;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        text-align: left;
    }
    
    .contact-form label {
        margin-bottom: 2%;
        color: #5A5A5A;
        font-size: 1.2em;
    }
    
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 20px;
        border-radius: 8px;
        border: 1px solid #5a5a;
        box-sizing: border-box;
        font-family: 'Figtree', sans-serif;
        font-size: 1rem;
    }
    .contact-form textarea {
        height: 150px;
        resize: none;
    }
    
    .contact-form button {
        background-color: #12A44F;
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1.1rem;
        font-weight: 600;
        align-self: center;
        transition: background-color 0.3s;
        width: 50%;
    }
    
    .contact-form button:hover {
        background-color: #0e8640;
    }
    
    .graphics {
        display: block;
        margin: 2% auto;
        margin-top: -29%;
        scale: 0.8;
        width: 100%;
    }
    #footer {
        background-image: url(../home/footer_bg.png);
        color: #ffffff;
        padding: 30px 20px;
        text-align: center;
        font-size: 1em;
    }
    
    .footer-content-wrapper {
        position: relative;
        z-index: 1;
    }
    .footer-icon {
        height: 35px;
        width: 35px;
    }
    .footer-contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .contact-icon {
        width: 8px;
        height: 8px;
        filter: brightness(0) invert(1);
    }

    .g-recaptcha {
        transform: scale(0.77);
        -webkit-transform: scale(0.77);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
    
    .contact-item p,
    .footer-copyright {
        margin: 0;
    }
    .footer-contact-info a {
        text-decoration: none;
        color: white;
    }
}

@media screen and (max-width: 376px) {
    html, body {
        overflow-x: hidden;
        padding-top: 50px;
    }

    .g-recaptcha {
        transform: scale(1);
        -webkit-transform: scale(.77);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        padding: 0 15px;
    }

    .navbar .logo-left {
        position: static;
        left: auto;
        transform: none;
        height: 25px;
        width: auto;
        order: 1;
        margin-right: 10px;
    }

    .navbar .logo-right {
        position: static;
        right: auto;
        transform: none;
        height: 25px;
        width: auto;
        order: 2;
        margin-right: auto;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: none;
        border-radius: 0;
        gap: 0;
        z-index: 999;
        order: 4;
        box-sizing: border-box;
    }

    .nav-links.show {
        max-height: 400px;
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        padding: 20px 0;
    }

    .nav-links a {
        padding: 15px 20px;
        width: calc(100% - 40px);
        max-width: 100%;
        text-align: center;
        border-radius: 0;
        font-weight: 500;
        font-size: 18px;
        color: #12A44F;
        background: none;
        display: block;
        margin: 5px 20px;
        box-sizing: border-box;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-links a.active {
        background-color: #12A44F;
        color: white;
        border-radius: 25px;
        font-weight: 600;
        padding-bottom: 20px;
    }

    .nav-links a:not(.active):hover {
        background-color: #e6f2e9;
        border-radius: 25px;
    }

    .menu-icon {
        display: flex;
        position: relative;
        width: 30px;
        height: 24px;
        cursor: pointer;
        flex-shrink: 0;
        order: 3;
        background-color: transparent;
        justify-content: center;
        align-items: center;
        top: 1.5vh;
    }

    .menu-icon span,
    .menu-icon::before,
    .menu-icon::after {
        display: block;
        width: 30px;
        height: 3px;
        background-color: #12A44F;
        border-radius: 1px;
        transition: all 0.3s ease;
        position: absolute;
        left: 0;
    }

    .menu-icon::before,
    .menu-icon::after {
        content: '';
    }

    .menu-icon::before {
        top: 0;
    }

    .menu-icon span {
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-icon::after {
        bottom: 0;
    }

    .menu-icon.active span {
        opacity: 0;
    }

    .menu-icon.active::before {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    .menu-icon.active::after {
        bottom: 50%;
        transform: translateY(50%) rotate(-45deg);
    }

    #contact {
        margin-bottom: 1%;
        padding: 0;
        height: 10%;
        width: 100%;
    }

    #contact_header {
        text-align: center;
        position: relative; 
        /* overflow: hidden; */
        height: 0%;
    }
    
    .title, .desc, .contact-content-wrapper {
        position: relative;
        z-index: 1;
    }
    
    .title {
        width: 100%;
        text-align: center;
        color: #12A44F;
        font-size: 2em;
        letter-spacing: 2px;
        margin-top: 0;
    }
    
    .desc {
        display: inline-block; 
        width: 70%;
        padding: 15px 10px;
        margin-bottom: 35px;
        background-color: #12A44F;
        color: white;
        font-size: 0.9em;
        text-align: center;
        border-radius: 50px;
        position: relative;
        z-index: 2;
    }
    
    .contact-content-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 90%;
        margin: auto;
        background-color: #CFECD9;
        border-radius: 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
        height: auto;
        top: -50px;
        padding: 30px;
        box-sizing: border-box;
    }
    
    .illus-container {
        display: none;
    }
    
    .contact-form {
        flex: 1;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        text-align: left;
    }
    
    .contact-form label {
        margin-bottom: 2%;
        color: #5A5A5A;
        font-size: 1em;
    }
    
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px;
        margin-bottom: 20px;
        border-radius: 8px;
        border: 1px solid #5a5a;
        box-sizing: border-box;
        font-family: 'Figtree', sans-serif;
        font-size: 0.8rem;
    }
    .contact-form textarea {
        height: 150px;
        resize: none;
    }

    .bi.bi-facebook {
        width: 16px; 
        height: 16px;
        fill: currentColor;
    }

    .bi.bi-phone {
        width: 16px; 
        height: 16px;
        fill: currentColor;
    }
    
    .contact-form button {
        background-color: #12A44F;
        color: white;
        border: none;
        padding: 12px 20px;
        border-radius: 8px;
        cursor: pointer;
        font-size: 1.1rem;
        font-weight: 600;
        align-self: center;
        transition: background-color 0.3s;
        width: 50%;
    }
    
    .contact-form button:hover {
        background-color: #0e8640;
    }
    
    .graphics {
        display: block;
        margin-top:-15%;
        margin-bottom:4%;
        scale: 0.8;
        width: 100%;
    }
    #footer {
        background-image: url(../home/footer_bg.png);
        color: #ffffff;
        padding: 30px 20px;
        text-align: center;
        font-size: 0.7em;
        overflow-wrap: anywhere;
    }
    
    .footer-content-wrapper {
        position: relative;
        z-index: 1;
        overflow-wrap: anywhere;
    }
    .footer-icon {
        height: 20px;
        width: 20px;
        overflow-wrap: anywhere;
    }
    .footer-contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        margin-bottom: 20px;
        overflow-wrap: anywhere;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .contact-icon {
        width: 8px;
        height: 8px;
        filter: brightness(0) invert(1);
    }
    
    .contact-item p,
    .footer-copyright {
        margin: 0;
    }
    .footer-contact-info a {
        text-decoration: none;
        color: white;
    }
}