* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: arial, sans-serif;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #202124;
}

.header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    background-color: #fff;
}

.header-left {
    padding-top: 4px;
}

.img-logo {
    display: block;
    width: 74px;
    height: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header a {
    text-decoration: none;
    font-size: 13px;
    color: #202124;
    padding: 8px 12px;
    border-radius: 4px;
}

.header a:hover {
    text-decoration: underline;
}


/* Footer */

.footer {
    background-color: #f2f2f2;
    border-top: 1px solid #e4e4e4;
    font-size: 14px;
    color: #1f1f1f;
    width: 100%;
}

.footer-top {
    padding: 15px 24px;
    border-bottom: 1px solid #e4e4e4;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 12px 24px;
}

.footer-left,
.footer-right {
    display: flex;
    gap: 0;
}

.footer a {
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    padding: 0 12px;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-center {
    font-size: 13px;
    color: #1f1f1f;
    text-align: center;
}

.footer-center a {
    color: #1f1f1f;
    text-decoration: none;
    padding: 0;
}


/* Responsive */

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 16px;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-center {
        order: 3;
    }
}