<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html, body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    background: #ffffff;
}

* {
    box-sizing: border-box;
    transition: background-color 0.1s, color 0.1s, opacity 0.1s, border-color 0.1s, outline-width 0.1s;
}

ul {
    padding: 0;
}

img.logo {
    max-height: 80px;
    height: 100%;
}

a {
    color: inherit;
    text-decoration: inherit;
}

p {
    white-space: pre-wrap;
}

header {
    background: #fca311;
    padding: 20px;
    margin-bottom: 32px;
}

header .content {
    display: grid;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    grid-auto-flow: column;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    font-weight: 500;
    font-size: 18px;
}

header nav ul li {
    margin: 0;
}

footer {
    background: #fca311;
    padding: 20px;
    margin-top: 64px;
}

footer .content {
    max-width: 800px;
}

footer img.logo {
    max-height: 64px;
}

footer nav ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    font-weight: 500;
    flex-direction: column;
    padding: 0 48px;
}

footer nav ul li {
    margin: 0;
}

footer .legal {
    text-align: center;
    margin-top: 48px;
    font-size: 14px;
}

footer .legal .logos {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: white;
}

footer .legal .logos img {
    max-height: 40px;
}

footer .two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    align-items: center;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
}

.box {
    background: #fca311;
    padding: 24px 48px;
    border-radius: 4px;
}

.offers {
    margin: 16px 0;
}

.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.cards .card {
    flex-direction: row;
    justify-content: space-between;
}

.cards .card p {
    width: 100%;
    padding-left: 48px;
}

.cards .card img {
    max-height: 64px;
}

.offers .card {
    background: #fca311;
    display: inline-flex;
    align-items: center;
    padding: 24px;
    border-radius: 4px;
}

.offers .card:hover {
    background: #ffb035;
}

.offers .card p {
    margin: 8px 0;
}

.offers .card h1 {
    background: white;
    color: #161623;
    padding: 4px;
    width: 100%;
    text-align: center;
}

.cards .card p {
    width: 100%;
}

.offers .card a.image-link {
    width: 100%;
}

.offers .card img {
    aspect-ratio: 1;
    display: block;
    width: 70%;
    object-fit: cover;
    max-height: fit-content;
}

button, .button {
    background: #14213d;
    border-radius: 4px;
    border: none;
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 16px 48px;
    width: fit-content;
    white-space: nowrap;
    text-decoration: none;
}

button:hover, .button:hover {
    background: #1d3059;
}

.card:hover &gt; button,.card:hover &gt; .button {
    outline: 3px solid #d62828;
    outline-offset: -1px;
}

.categories ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
}

.categories ul li {
    padding: 16px 64px;
    border-left: 1px solid #161623;
    flex: 1 1 auto;
    text-align: center;
    background: #fca311;
}

.categories ul li:first-child {
    border-left: none;
}

.categories ul li:hover {
    background: #ffb035;
}

.categories ul li.active {
    background: #ff9d00;
}

header .menu {
    display: flex;
    font-size: 24px;
    border-radius: 3px;
    padding: 12px;
    aspect-ratio: 1/1;
    line-height: 1em;
    align-items: inherit;
    z-index: 99;
}

@media (min-width: 601px) {
    .categories ul li:first-child {
        border-radius: 4px 0 0 4px;
    }

    .categories ul li:last-child {
        border-radius: 0 4px 4px 0;
    }
}

@media (max-width: 600px) {
    .cards .card {
        flex-direction: column;
    }

    .cards .card img {
        max-height: 248px;
    }

    .categories ul {
        flex-direction: column;
    }

    .cards .card p {
        padding-left: 0;
    }
}

@media (min-width: 901px) {
    header .menu {
        display: none;
    }
}

@media (max-width: 900px) {
    header .content {
        grid-template-columns: repeat(2, auto);
        grid-auto-flow: unset;
    }

    header nav {
        display: none;
        margin-top: 24px;
    }

    header nav.open {
        display: block;
    }

    header nav ul li a {
        padding: 8px 24px;
    }
}</pre></body></html>