html {
    border: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Montserrat", sans-serif; /* Apply Montserrat font globally */
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* Cleaner background color */    
    align-items: center;
}

.faq-container {
    display: flex;
    flex-direction: column; /* Change layout to a single column */
    gap: 20px;
    max-width: 800px; /* Adjust width for readability */
    margin: 40px auto;
}

.faq-title {
    font-family: "Montserrat", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    text-align: center;
    margin: 20px 0;
    padding-top: 20px;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    background-color: #f9f9f9;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    background-color: #e0e0e0;
}

.faq-answer {
    padding: 15px 20px;
    font-size: 16px;
    color: #555555;
    display: none; /* Hidden by default */
    margin-top: 10px; /* Add spacing between question and answer */
}

.faq-item:hover .faq-answer {
    display: block; /* Show answer on hover */
}

.faq-item.active .faq-answer {
    display: block; /* Ensure answers remain visible */
}

.faq-item.active .faq-question::after {
    content: "-";
    font-size: 20px;
    font-weight: bold;
    color: #333333;
}

faq-question::after {
    content: "+";
    font-size: 20px;
    font-weight: bold;
    color: #333333;
}

/* header section */
.header-bar {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    box-sizing: border-box;
    z-index: 1000;
    max-height: 120px;
    background-color:#58cced;
}

.header-bar img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: center;
    transform: translateY(-20px);
    margin: 10px;
}

.header-bar ul {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: rgb(0, 0, 0);
    text-decoration: none;
    list-style: none;
    display: flex;
    align-items: right;
    margin: 0;
    padding: 0;
    top: 50%;
    right: 2%;
    position: absolute;
}

.header-bar li {
    margin: 0 10px;
    display: inline-block;
    position: relative;
}
.nav-link {
    font-size: 18px;
    color: rgb(0, 0, 0);
    text-decoration: none;
    margin: 0 15px;
}
/* Dropdown menu styling */
.header-bar li {
    position: relative;
}

.header-bar li:hover .dropdown {
    display: block;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 1000;
    min-width: 150px;
}

.dropdown a {
    display: block;
    padding: 10px 15px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown a:hover {
    background-color: #f0f0f0;
    color: #000;
}

/* Mobile menu styles */
.menu-button {
    display: none;
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.nav-bar {
    display: flex;
    flex-direction: row;
}

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

@media (max-width: 768px) {
    .menu-button {
        display: block;
    }

    .nav-bar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100%;
        background-color: #58cced;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-bar.active {
        right: 0;
    }

    .nav-bar ul {
        flex-direction: column;
        gap: 15px;
        top: 80%;
    }

    .nav-link {
        font-size: 18px;
        color: #000;
        text-decoration: none;
    }
}

footer {
    background-color: #002b38;
    color: #ffffff;
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 200px;
  }
  
  .footer-logo {
    max-height: 150px;
    object-fit: cover;
    width: 200px;
    height: auto;
    margin-right: 30px;
    margin-top: -30px;
    align-items: left;
  }
  .social-links h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    margin-right: 20px;
    font-weight: 800;
    text-align: left;
    align-items: left;
    margin-bottom: -15px;
    padding-left: 40px;
  }
  
  .social-links ul {
    display: flex;
    gap: 18px;
    height: 150px;
    width: 150px;
  }
  
  .social-links li {
    list-style: none;
    width: 100px; 
    height: 100px;
  }
  
  .social-links li img {
    width: 100%; 
    height: 100%;
    object-fit: contain; 
  }
  
  .social-links {
    margin-top: 30px;
  }


