.header-section {
    height: 75px;
    display: flex;
    /* background-color: lightpink; */
    background-color: white;
    align-items: center;
    justify-content: space-between;
    
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 965px;
    margin: 0 auto;
    z-index: 100;
}

.header-title > a {
    text-decoration: none;
    color: black;
    font-size: 12px;
}

.header-title {
    padding-left: 5px;
}

.header-links {
    display: flex;
    padding-right: 5px;
}

.header-link > li {
    list-style-type: none;
    margin-left: 15px;
    font-size: 17px;
}

.header-link > li > a {
    text-decoration: none;
    color: rgb(143, 142, 142);
}

/* ===== Tablet (≤768px) ===== */
@media (max-width: 768px) {
    .header-section {
        height: 65px;
        padding-left: 10px;
    }

    .header-link > li {
        margin-left: 10px;
        font-size: 15px;
        justify-content: space-between;
        padding-right: 15px;
    }
}

/* ===== Mobile (≤480px) ===== */
@media (max-width: 480px) {
    .header-section {
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 14px;
    }

    .header-title > a {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .header-links {
        width: 100%;
    }

    .header-link > li {
        margin-left: 0;
        font-size: 14px;
        margin-right: 15px;
        margin-left: 5px;
        margin-top: 8px;
    }
}