:root {
    --yellow: #ffc400;
    --yellow-dark: #f0b600;
    --text: #2f3036;
    --muted: #777b86;
    --line: #e5e5e5;
    --soft-pink: #ffe0e7;
    --panel: #f5f6f7;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #fff;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    padding-bottom: 48px;
}

a {
    text-decoration: none;
}

.main-container {
    max-width: 1040px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
}

.navbar {
    min-height: 48px;
}

.navbar-brand {
    color: #4a4d55;
    font-size: 13px;
    font-weight: 700;
}

.navbar-brand:hover {
    color: #4a4d55;
}

.navbar-brand img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.navbar-brand strong {
    color: var(--yellow-dark);
}

.header-btn {
    border: 0;
    border-radius: 3px;
    color: #212529;
    font-size: 11px;
    font-weight: 700;
    padding: 7px 12px;
}

.hero-section {
    padding: 16px 0 26px;
}

.hero-section h1 {
    margin: 0 auto 20px;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 800;
}

.hero-image-wrap {
    position: relative;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 5px;
}

.hero-image {
    display: block;
    width: 100%;
    margin: 0 auto;
}

.language-title {
    margin: 24px auto 0;
    font-size: clamp(20px, 4.4vw, 30px);
    line-height: 1.25;
    font-weight: 800;
}

.cta-strip {
    background: var(--soft-pink);
    margin: 0 5px;
    max-width: 100%;
    padding: 30px 15px 30px;
}

.download-btn,
.sticky-download {
    border: 0;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(230, 172, 0, .32);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    min-width: 245px;
    padding: 11px 22px;
}

.sticky-download {
    background: var(--yellow-dark);
    font-size: 18px;
    border: 5px solid #fff;
}

.bouncess {
    animation: bouncess 1s infinite;
}

@keyframes bouncess {
    0%,
    to {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(.8, 0, 1, 1)
    }
    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, .2, 1)
    }
}

.download-btn:hover,
.sticky-download:hover {
    background: var(--yellow-dark);
    color: #fff;
}

.download-btn i,
.sticky-download i {
    margin-right: 6px;
}

.phone-link {
    color: #3a3d45;
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin: 24px 0 18px;
}

.call-btn,
.whatsapp-btn {
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    min-width: 150px;
    padding: 10px 19px;
}

.call-btn {
    border: 2px solid var(--yellow);
    color: #50545e;
}

.call-btn:hover {
    border-color: var(--yellow-dark);
}

.whatsapp-btn {
    background: #0aa372;
    color: #fff;
}

.whatsapp-btn:hover {
    background: #088c62;
    color: #fff;
}

.section-panel {
    background: var(--panel);
    margin: 0 5px;
    max-width: 100%;
    padding: 25px 15px 25px;
}

.results-section {
    padding: 22px 0 14px;
}

.section-title h2,
.faq-title {
    margin: 0;
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

.section-title span {
    color: var(--yellow-dark);
}

.section-title h2::after {
    background: var(--yellow);
    content: "";
    display: block;
    height: 2px;
    margin: 8px auto 0;
    width: 82px;
}

.section-title p {
    color: var(--muted);
    font-size: 11px;
    margin: 7px 0 13px;
}

.tab-strip {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    margin: 0 0 20px;
}

.tab-strip .col {
    background: #a9a9a9;
    border-right: 1px solid rgba(255, 255, 255, .8);
    padding: 9px 5px;
}

.tab-strip .col:last-child {
    border-right: 0;
}

.tab-strip .active {
    background: var(--yellow);
}

.rates-grid {
    margin-top: 0;
}

.rate-card {
    align-items: center;
    background: #fff;
    border-left: 4px solid var(--yellow);
    border-radius: 2px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, .12);
    display: flex;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 13px;
}

.rate-card span {
    font-size: 12px;
    font-weight: 800;
}

.rate-card i {
    font-size: 10px;
    margin-right: 4px;
}

.rate-card strong {
    background: var(--yellow);
    border-radius: 3px;
    color: #3b3d43;
    display: inline-block;
    font-size: 10px;
    font-weight: 900;
    min-width: 80px;
    padding: 6px 10px;
    text-align: center;
}

.results-grid {
    margin-top: 2px;
}

.result-card {
    align-items: center;
    background: #fff;
    border-left: 4px solid #1c2733;
    border-radius: 2px;
    box-shadow: 0 5px 13px rgba(0, 0, 0, .18);
    display: flex;
    justify-content: space-between;
    min-height: 94px;
    padding: 16px 18px 13px 84px;
}

.result-card h3 {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 3px;
}

.result-card p {
    color: #333741;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 6px;
}

.result-card a:not(.play-link) {
    border: 1px solid #e6bd28;
    border-radius: 3px;
    color: #6b5a1a;
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    margin-right: 4px;
    padding: 2px 7px;
}

.play-link {
    align-items: center;
    color: #30333b;
    display: flex;
    flex-direction: column;
    font-size: 10px;
    font-weight: 900;
    gap: 4px;
    text-align: center;
    white-space: nowrap;
}

.play-link:hover {
    color: #30333b;
}

.play-link i {
    align-items: center;
    background: var(--yellow);
    border: 4px solid #fff5ba;
    border-radius: 50%;
    color: #fff;
    display: flex;
    font-size: 14px;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.accordion-section,
.faq-section {
    padding: 16px 0 0;
}

.accordion-container {
    max-width: 600px;
}

.app-accordion {
    background: #fff;
    margin-top: 14px;
}

.accordion-item {
    border-color: var(--line);
    border-left: 0;
    border-right: 0;
}

.accordion-button {
    color: #333740;
    font-size: 12px;
    font-weight: 900;
    padding: 18px 24px;
}

.accordion-button:not(.collapsed) {
    background: #fff;
    box-shadow: none;
    color: #333740;
}

.accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 16px;
    font-weight: 900;
    height: auto;
    transform: none;
    width: auto;
}

.accordion-button:not(.collapsed)::after {
    content: "-";
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    color: #444851;
    font-size: 11px;
    padding: 0 24px 18px;
}

.faq-title {
    font-size: 24px;
    margin: 25px 0 19px;
}

.responsible-section {
    padding: 46px 0 24px;
}

.age-icon {
    height: 44px;
    width: 44px;
}

.responsible-section p {
    color: #696d76;
    font-size: 12px;
    margin: 10px auto 0;
}

.brand-row {
    margin: 22px auto 0;
    max-width: 760px;
}

.brand-row img {
    max-height: 62px;
    max-width: 100%;
}

.seo-text {
    font-size: 10px !important;
    line-height: 1.4;
    max-width: 980px;
}

.site-footer {
    background: var(--yellow);
    color: #fff;
    padding: 26px 12px 55px;
}

.site-footer img {
    height: 43px;
    margin-bottom: 8px;
    width: 43px;
}

.site-footer h2 {
    font-size: 17px;
    font-weight: 900;
    margin: 0;
}

.sticky-download {
    bottom: 10px;
    left: 18px;
    max-width: calc(100% - 36px);
    min-width: 0;
    position: fixed;
    /* transform: translateX(-50%); */
    width: 100%;
    z-index: 40;
}

@media (max-width: 991.98px) {
    .result-card {
        padding-left: 34px;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 13px;
    }
    .hero-section {
        padding-top: 13px;
    }
    .hero-section h1 {
        font-size: 15px;
    }
    .hero-image {
        width: 100%;
    }
    .language-title {
        margin-top: 15px;
    }
    .cta-strip,
    .section-panel {
        max-width: calc(100% - 24px);
    }
    .tab-strip {
        font-size: 10px;
    }
    .result-card {
        min-height: 88px;
        padding: 14px 14px 12px 22px;
    }
    .result-card h3 {
        font-size: 14px;
    }
    .result-card p {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .download-btn,
    .sticky-download {
        min-width: 220px;
    }
    .call-btn,
    .whatsapp-btn {
        min-width: 132px;
    }
    .rate-card {
        padding: 0 10px;
    }
    .result-card {
        gap: 10px;
    }
    .result-card a:not(.play-link) {
        padding-inline: 5px;
    }
}