    /* -------------------- Each Page Header ----------------------- */
    * {
        box-sizing: border-box;
    }
    header img{
        width: 100%;
    }
    header{
        margin-bottom: -5px;
    }
    body {
        font-family: "Lucida Sans", sans-serif;
        font-size: 17px;
        margin: 0%;
        text-align: center;    
    }
    .logo{
        color: white;
        font-size: 30px;
    }
    .navbar {
        position: relative; 
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        z-index: 1000; 
        box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
        background-color: rgb(249, 100, 0);
        margin-top: 0%;
    }
    #menu-toggle {
        display: none;
    }
    .hamburger-icon {
        font-size: 55px;
        cursor: pointer;
        display: block;
        color: white; 
    }
    .nav-links {
        position: absolute;
        top: 75%; 
        left: 0;
        width: 100%; 
        background-color: white;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        border-top: 1px solid #f0f0f0;       
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-20px);         
        transition: all 0.3s ease-in-out;
        z-index: 999; 
    }
    .nav-links li {
        list-style: none;
        text-align: center;
    }
    .nav-links li a {
        display: block; 
        padding: 30px 0;
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: background 0.2s; 
        font-size: 30px;
    }
    .nav-links li a:hover {
        background-color: #f9f9f9;
        color: rgb(249, 100, 0); 
    }
    #menu-toggle:checked ~ .nav-links {
        max-height: 400px; 
        opacity: 1;
        transform: translateY(0); 
    }

    /* -------------------- Home Page Contant----------------------- */

    .home-main-banner{
        background-image: url("home_images/home-banner.png");
        width: 100%;
        height: 1000px;
        background-size:cover;
        text-align: center;
        background-repeat: no-repeat;
    }
    #home-content{
        display: flex;
        flex-direction: column;
        text-align: left;
        justify-content: center;
        text-align: justify;
        height: 1000px;
        opacity: 1;
    }
    #tagline1{
        justify-content: center;
        padding:0px 20px;
        margin-left: 40px;
        margin-top: 0%;
        width: 70%;
        font-size: 40px;
        margin-top: 1px;
        color: rgb(249, 100, 0);
    }
    #home-content h2{
        justify-content: center;
        padding:10px 20px;
        margin-left: 40px;
        width: 70%;
        color: darkgrey;
    }
    #tagline2{
        color: darkgrey;
        justify-content: center;
        padding:10px 20px;
        margin-left: 40px;
        width: 70%;
    }
    .brief_introduction{
        padding: 50px;
        background-color: rgb(218, 218, 218);
    }
    .brief_introduction h2, p{
        padding: 16px 20px;
        font-size: 48px;
        text-align: justify;
    }
    .home-button{
        border: none;
        color:rgb(249, 100, 0);
        padding: 25px;
        text-align: left;
        text-decoration: none;
        display: inline-block;
        font-size: 30px;
        margin: 4px 2px;
        cursor: pointer;
        transition-duration: 0.4s;
        border-radius: 10px;
        margin-left: 10px;
        width: 100%;
    }
    .home-button:hover{
        box-shadow: 0 8px 16px 0 rgb(249, 100, 0);
    }

    /* -------------------- Each Page Footer----------------------- */

    footer img{
        width: 100%;
        height: 250px;
        position: relative;
    }
    footer{
        text-align: left;
        padding-top: 0%;
        font-size: 35px;
        background-color: rgb(17 24 39);
        font-size: 35px;
    }
    footer h2{
         padding: 40px;
         padding-bottom: 0px;
         color: white;
    }
    footer h3{
        color: white;
    }
    #footer_follow , #footer_support , #footer_aboutUs {
        padding: 16px 40px;
        margin-top: 0%;
    }
    #footer_follow a, #footer_support a, #footer_aboutUs a{
        text-decoration: none;
        display: flex;
        flex-direction: column;
        padding: 16px 20px;
        color:white;
    }
    #footer_support a:hover, #footer_aboutUs a:hover{
        color: rgb(249, 100, 0);
    }
    #facebook:hover{
        color: #1877F2;
    }
    #instargram:hover{
        color:#E1306C;
    }
    #twitter:hover{
        color:#0084b4
    }
    #copyRight{
        color: aliceblue;
        text-align: center;
        justify-content: center;
        padding: 65px;
        font-size: 30px;
        margin-bottom: 0%;
    }
