    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .header-header {
        background-color: #2c3762;
        color: white;
        padding: 20px;
        display: flex;
        justify-content: center;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 1000;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

    .header-content {
        display: flex;
        align-items: center;
        max-width: 1200px;
        width: 100%;
        height: 50px;
        justify-content: space-between;
    }

    .header-logo-container {
        display: flex;
        align-items: center;
    }

    .header-logo {
        width: 120px;
        height: auto;
        margin-right: 10px;
    }
@media (max-width: 768px) {
  .header-logo {
    width: 100px; /* Smaller size for mobile */
  }
}

@media (max-width: 480px) {
  .header-logo {
    width: 100px; /* Even smaller size for smaller screens */
  }
}
    .header-buttons {
        display: flex;
        flex-direction: column;
    }

    .header-buttons button {
        background-color: #2c3762;
        color: white;
        border: none;
        padding: 5px 10px;
        margin-top: 5px;
        cursor: pointer;
        transition: background-color 0.3s, color 0.3s;
    }

    .header-buttons button:hover {
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 5px;
    }

    .header-nav-links {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
    }

    .header-nav-links li {
        margin-right: 20px;
    }

    .header-nav-links li:last-child {
        margin-right: 0;
    }

    .header-nav-links li a {
        color: white;
        text-decoration: none;
        font-weight: bold;
        padding: 10px 15px;
        transition: background-color 0.3s, color 0.3s;
    }

    .header-nav-links li a:hover {
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 5px;
    }

    .header-burger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        margin-right: 0px;
    }

    .header-burger div {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 4px;
        transition: all 0.3s ease;
    }

    .header-nav-links-mobile {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        background-color: #2c3762;
        padding: 20px;
    }

    .header-nav-links-mobile li {
        margin: 10px 0;
        list-style: none;
    }

    .header-nav-links-mobile li a {
        padding: 10px 0;
        color: white;
        text-decoration: none;
        font-weight: bold;
    }

    .header-nav-links-mobile li a:hover {
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 5px;
    }

    @media (max-width: 768px) {
        .header-nav-links {
            display: none;
        }
        .header-burger {
            display: flex;
        }
    }

    .header-burger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .header-burger.active div:nth-child(2) {
        opacity: 0;
    }

    .header-burger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .header-nav-links-mobile.active {
        display: flex;
    }

    .content {
        padding-top: 100px;
    }



