   body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            
        }

        .news-detail-container{
            display: flex;
        }

        .sidebar {
            width: 30%;
            background: #f4f4f4;
            padding: 20px;
            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
        }

        .sidebar h3 {
            margin-top: 0;
        }

        .sidebar a {
            display: block;
            margin: 10px 0;
            color: #018A44;
            text-decoration: none;
            margin-left: 10px;
        }

        .sidebar a:hover {
            text-decoration: underline;
        }

        .content {
            width: 80%;
            padding: 20px;
        }

        .content img {
            width: 100%;
            height: auto;
        }

        .content h2 {
            margin-top: 0;
        }

        .content p {
            color: #555;
        }

        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;
    }
}

.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;
            }
        }