*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Helvetica, Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #000;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}

button {
    font: inherit;
    cursor: pointer;
}

a {
    color: inherit;
}

.about-benefit-check {
    width: 34px;
    height: 34px;
    min-width: 34px;
    flex-shrink: 0;
    background: rgba(52, 211, 153, 0.2);
    padding: 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-header-link{
    background-color: transparent;
    border: none;
}
.about-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 8px;
    text-align: left;
    padding: 11px;
}

.about-benefit-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-benefit-text {
    color: white;
    font-weight: 400;
}

.about-tariff-footnote {
    font-size: 11px;
    color: #9ca3af;
    text-align: center;
    margin-top: 0;
    margin-bottom: 16px;
}

.about-header-burger {
    display: none;
}

.about-header-mobile-menu-root {
    display: none;
}

.about-header-mobile-menu-root.is-open {
    display: block;
}

@media (max-width: 800px) {
    .about-header-burger {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
    }
}

@media (min-width: 801px) {
    .about-header-mobile-menu-root.is-open {
        display: none !important;
    }
}
