* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    background-color: #3b3022;
    color: #fff;
}

a {
    text-decoration: none;
    color: #003e9e;
}

a:hover {
    color: #bce2f9;
}

img {
    max-width: 100%;
}

header,
main,
footer {
    width: 100%;
    max-width: 852px;
    background-color: #5d4b35;
    position: relative;
    margin: auto;
    padding-top: 40px;
    padding-left: 71px;
    padding-right: 71px;
    
}

.header-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 30px;
    margin-bottom: 33px;
    
}

.logo a amp-img {
    width: 100%;
    max-width: 205px;
}

.cta-container {
    margin-left: auto;
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.btn-action {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 214px;
    height: 49px;
    background-color: #5d4b35;
    border: 1px solid #f1db8f;
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.btn-action.login:hover {
    background-color: #f1db8f;
    color: #000000;
}

.text-head{
     color: #f1db8f;
}
.btn-action.register {
    background-color: #f1db8f;
    color: #000000;
}

.btn-action.register:hover {
    background-color: #146eff;
}

.text-slogan {
    background-color: #5d4b35;
    padding: 10px;
    text-align: center;
    border: 1px solid #f1db8f;
}

@media screen and (max-width: 468px) {
    header {
        padding-left: 20px;
        padding-right: 20px;
    }
    .header-container {
        justify-content: center;
    }
    .cta-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-left: 0;
    }
}

main {
    padding-top: 16px;
    text-align: center;
}

.banner {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 20px;
}

.tags {
    padding: 0;
    margin: 0;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 22px;
    line-height: 28px;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.tags li {
    padding: 0px 15px;
    margin-bottom: 4px;
    position: relative;
}

.tags li::after {
    content: "";
    width: 1px;
    height: 14px;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.tags li:last-child::after {
    display: none;
}

.tags li a {
    color: #ffffff;
}

@media screen and (max-width: 468px) {
    main {
        padding-left: 20px;
        padding-right: 20px;
    }
    .tags {
        font-size: 13px;
        line-height: 18px;
        font-weight: 500;
        gap: 0px 10px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .tags li {
        padding: 0;
        padding-right: 10px;
    }
}

footer {
    text-align: center;
    padding-bottom: 20px;
}

footer p {
    margin-bottom: 1em;
}

.gcr {
    color: #14a4ff;
}

@media screen and (max-width: 468px) {
    footer {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 14px;
    }
}

/* New CSS for footer links to move inline styles here */
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.footer-links span {
    color: #fff;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid #5597b3;
    padding-top: 20px;
}