:root {
    --bg-page: #e8e8e8;
    --heading-bg: #0f2b5c;
    --heading-text: #ffffff;
    --link-color: #1e3a8a;
    --table-th-text: #0f172a;
    --badge-text: #ffffff;
    --badge-available-bg: rgb(22, 101, 52);
    --badge-unavailable-bg: rgb(153, 27, 27);
    --badge-available-hover-bg: rgb(37, 159, 84);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100dvh;
    background-color: var(--bg-page);
    display: flex;
    flex-direction: column;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

body {
    margin: 0 auto;
    min-height: 100%;
    width: 100%;
    max-width: 45rem;
    display: flex;
    flex-direction: column;
    padding: 5px 0;
    gap: 5px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

section>*:not(h1, h2, h3, h4, h5, h6, hr) {
    padding: 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-wrap: balance;
    overflow-wrap: break-word;
    line-height: 1.2;
}

h1 {
    font-size: clamp(1.4rem, 2vw + 1rem, 2rem);
}

h2 {
    font-size: clamp(1.3rem, 1.8vw + 0.9rem, 1.8rem);
}

h3 {
    font-size: clamp(1.2rem, 1.5vw + 0.8rem, 1.6rem);
}

h4 {
    font-size: clamp(1.1rem, 1.2vw + 0.8rem, 1.4rem);
}

h5 {
    font-size: clamp(1rem, 0.8vw + 0.8rem, 1.2rem);
}

h6 {
    font-size: clamp(0.9rem, 0.5vw + 0.8rem, 1rem);
}

p {
    font-size: clamp(1rem, 0.8vw + 0.8rem, 1.2rem);
    overflow-wrap: break-word;
    text-wrap: pretty;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

code,
kbd,
samp,
pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 1em;
}

pre {
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
}

fieldset {
    border: none;
}

legend {
    padding: 0;
    display: table;
    max-width: 100%;
    white-space: normal;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    text-indent: 0;
    border-color: inherit;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

ul[role='list'],
ol[role='list'] {
    list-style: none;
}

a {
    text-decoration-skip-ink: auto;
    color: var(--link-color);
}

hr {
    height: 0;
    margin: 0;
    padding: 0;
    color: inherit;
    border: none;
    border-top: 1px solid black;
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.pricing-table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 5px 0;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: clamp(0.85rem, 0.4vw + 0.75rem, 0.95rem);
    line-height: 1.5;
    text-align: left;
}

.pricing-table th,
.pricing-table td {
    padding: 8px 1.2rem;
    vertical-align: middle;
    white-space: nowrap;
}

.pricing-table th {
    color: var(--table-th-text);
    font-weight: 600;
}

.pricing-table .available {
    background-color: var(--badge-available-bg);
    color: var(--badge-text);
    font-weight: 800;
    font-size: clamp(0.875rem, 0.5vw + 0.75rem, 1rem);
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 0px;
}

.pricing-table .unavailable {
    background-color: var(--badge-unavailable-bg);
    color: var(--badge-text);
    font-weight: 800;
    font-size: clamp(0.875rem, 0.5vw + 0.75rem, 1rem);
    border-radius: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 0px;
}

.pricing-table .available > *, .pricing-table .unavailable > * {
    height: 100%;
    width: 100%;
    padding: 5px 10px;
}

.pricing-table .available > a {
    color: inherit;
    text-decoration: none;
}

.pricing-table .available:hover {
    background-color: var(--badge-available-hover-bg);
}

.heading_blue {
    background-color: var(--heading-bg);
    width: 100%;
    color: var(--heading-text);
    padding: 5px;
    text-align: center;
}