    body {
            margin: 0;
            padding: 0;
        }

        .front-img {
            position: relative; /* Ensure position context for absolutely positioned child */
            width: 100%; /* Ensure the image takes full width */
            height: auto; /* Maintain aspect ratio */
            overflow: hidden; /* Hide overflow to prevent text from flowing out */
        }

        .front-img img {
            display: block; /* Remove default image margins */
            width: 100%; /* Ensure the image takes full width */
            height: auto; /* Maintain aspect ratio */
            filter: brightness(75%);
        }

        .overlay-text {
            position: absolute; /* Position relative to parent */
            top: 50%; /* Place the top of the element at the vertical center of the parent */
            left: 50%; /* Place the left side of the element at the horizontal center of the parent */
            transform: translate(-50%, -50%); /* Adjust the element to center itself */
            text-align: center;
            color: white;
            z-index: 2; /* Ensure text appears above the image */
        }
        .asking{
            text-decoration: none;
            color: white;
            background-color: #018A44;
            padding: 10px;
            text-align: center;
            border-radius: 5px;
            display: block;
            width: calc(100% - 40px);
            max-width: 1000px;
            margin: 20px auto;
        }
        .overlay-text h3 {
            font-size: 2em;
        }

        .overlay-text p {
            font-size: 1.2em;
        }

        @media (max-width: 768px){
            .overlay-text h3{
                font-size: small;
            }
            .overlay-text p{
                font-size: smaller;
            }
        }

        .questions-container {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 30px;
        }

        .questions-container a{
            text-decoration: none;
            color: white;
            background-color: #018A44;
            width: 80%;
            padding: 5px;
            text-align: center;
            border-radius: 5px;
        }

        .question {
            width: 80%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            margin: 20px;
            border-bottom: 1px solid #ddd;
            cursor: pointer;
        }

        .question span {
            margin-right: 10px;
        }

        .question .plus-sign {
            cursor: pointer;
        }

        .questions-container h2{
            color: #018A44;
        }

        .answer {
            width: 80%;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            margin: 0 20px;
        }

        .answer p {
            margin: 10px 0;
            font-size: smaller;
            color: rgba(0,0,0,0.6);
        }

        .answer.visible {
            max-height: 100px; /* Adjust based on content height */
        }

        .topbar {
      width: 100%;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .logo1 {
      display: flex;
      height: 80px;
      align-items: center;
      padding: 0 20px;
    }

    .logo1 img {
      height: 70px;
    }

    .info-container {
      display: flex;
      align-items: center;
      padding: 0 20px;
      flex-grow: 1;
      justify-content: flex-end;
    }

    .info-box {
      display: flex;
      align-items: center;
      padding: 0 40px;
    }

    .box {
      display: flex;
      flex-direction: column;
      justify-content: center;
      font-size: small;

    }

    .info-box img {
      height: 30px;
      width: auto;
      padding: 0 5px;
    }

    @media (max-width: 768px) {
      .topbar {
        padding: 0 10px;
        display: none;
      }

      .logo1 {
        padding: 0 10px;
      }

      .info-container {
        padding: 0 10px;
      }
    }

    @media (max-width: 480px) {
      .topbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: auto;
        padding: 10px 0;
      }

      .logo1 {
        padding: 0;
        margin-bottom: 10px;
      }

      .logo img {
        height: 60px;
      }

      .info-container {
        flex-direction: column;
        align-items: center;
        padding: 0;
      }

      .info-box {
        padding: 5px 0;
      }

      .box {
        font-size: small;
        text-align: center;
      }
    }
        body {
            margin: 0;
            padding: 0;
            height: 100%;
            width: 100%;
            font-family: Arial, sans-serif;
        }

        nav {
            width: 100%;
            height: 50px;
            background-color: #2D2A26;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .logo {
            font-size: 35px;
            line-height: 50px;
            
            display: none;
        }

        nav ul {
            margin: 0;
            padding: 0;
            list-style-type: none;
            display: flex;
            align-items: center;
            height: 100%;
        }

        nav ul li {
            display: inline-block;
            line-height: 50px;
            font-size: 13px;
        }

        nav ul li a {
            text-decoration: none;
            color: white;
            padding: 8px 20px;
            border-right: 1px solid #ACACAC;
        }

        

        .nav-register {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .nav-register div a {
            text-decoration: none;
            color: #ACACAC;
            font-size: 15px;
            padding: 0 5px;
        }

        .nav-register div {
            display: flex;
            align-items: center;
            color: #ACACAC;
            font-size: 18px;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .none{
            display: none;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: black;
            margin: 4px;
        }

        @media (max-width: 829px) {

            nav{
                background: none;
                height: 80px;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                position: absolute;
                top: 70px;
                left: 0;
                background-color: #2D2A26;
                transition: max-height 0.3s ease;
                overflow: hidden;
                max-height: 0;
            }

            .topbar{
                display: none;
            }

            .logo{
                display: block;
                padding: 10px 20px;
            }

            nav ul.active {
                display: flex;
                max-height: 440px; /* Adjust as necessary to show all items */
            }

            .none{
            display: block;
        }

            nav ul li {
                display: block;
                width: 100%;
                text-align: center;
                border-right: none;
                border-bottom: 1px solid #ACACAC;
            }

            nav ul li a{
                border-right: none;
            }

            .nav-register {
                display: none;
            }

            .hamburger {
                display: flex;
            }
        }

        footer {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-evenly;
    align-items: flex-start;
    background: #2D2A26;
    padding: 20px 0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    width: 20%;
    height: auto;
    color: white;
    margin: 20px;
    font-size: small;
}

.footer-links img {
    width: 150px;
    height: auto;
}

.footer-social-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    width: 100%;
    color: white;
    margin: 0px;
}

.social img {
    height: 20px;
    width: auto;
    margin-right: 10px;
}

.social {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.social a {
    text-decoration: none;
    color: white;
    font-size: small;
}

.footer-info {
    margin: 15px 0;
}

.footer-info .heading {
    color: #018A44;
}

.company-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.company-links a {
    text-decoration: none;
    color: white;
    font-size: small;
    padding: 15px 0 0;
}

.footer-links h2 {
    margin: 0 0px 15px;
    color: white;
}

.copyright {
    background: #018A44;
    color: white;
    text-align: center;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-links {
        width: 45%;
    }

    .footer-social-content {
        grid-template-columns: 1fr;
    }

    .company-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 0px) {
    footer {
        flex-direction: column;
        justify-content: space-evenly;
    }

    .footer-links {
        width: 100%;
        margin: 10px 0;
    }

    .footer-social-content {
        justify-content: flex-start;
    }

    .company-links {
        justify-content: flex-start;
 