* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
    background: #fff;
}

h1 {
    opacity: 0.7;
    font-weight: 1000;
    text-align: center;
    letter-spacing: -0.10rem;
    font-size: 2.2rem;
    line-height: 2.6rem;
    margin: 1.5rem 0 0.8rem 0;
}

h2 {
    opacity: 0.64;
    font-weight: 400;
    letter-spacing: -0.10rem;
    font-size: 2.2rem;
    line-height: 2.6rem;
    margin: 1.5rem 0 0.8rem 0;
}

p, ul li {
    opacity: 0.64;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.02rem;
    line-height: 1.2rem;
    margin: 0 0 0rem 0;
    color: #333;
}

ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

/* HEADER */
.nav-bar {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #3A7BD5;
    font-weight: 700;
    font-size: 1.3rem;
}

.header-logo {
    height: 40px;
    margin-right: 10px;
}

.menu-items {
    display: flex;
    gap: 20px;
}

    .menu-items a {
        text-decoration: none;
        color: #212121;
        font-weight: 500;
    }

/* BURGER ICON */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    height: 20px;
    justify-content: space-between;
}

    .burger div {
        width: 100%;
        height: 3px;
        background-color: #333;
        transition: all 0.3s ease;
    }

    .burger.active div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger.active div:nth-child(2) {
        opacity: 0;
    }

    .burger.active div:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

/* MAIN CONTENT */
.main-content {
    max-width: 1000px;
    margin: 100px auto 50px auto;
    padding: 0 20px;
}

.content-section {
    margin-bottom: 30px;
}

/* FOOTER */
.footer {
    background: #f5f5f5;
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #757575;
}

    .footer a {
        color: #757575;
        text-decoration: none;
    }

        .footer a:hover {
            text-decoration: underline;
        }

/* RESPONSIVE */
@media (max-width: 768px) {
    .menu-items {
        position: fixed;
        top: 70px;
        right: -260px; /* Start hidden off-screen */
        width: 200px; /* Set desired width */
        height: 100%;
        background: #fff;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        padding: 20px;
        transition: right 0.3s ease;
        z-index: 999;
    }

        .menu-items a {
            text-align: right;
            font-size: 1.2rem;
        }

        .menu-items.active {
            right: 0; /* Slide in */
        }

    .burger {
        display: flex;
    }
}