.main-content img {
    width: 100%;
    display: inline-block;
    border-radius: 8px;
    margin: 24px 0;
    background-color: #04418d;
    box-shadow: 0 0 30px #04418d;
}

h2, h3, h4, h5, h6 {
    color: #fff;
    padding-top: 24px;
    margin-bottom: 16px;
}

ol, p, ul {
    margin-bottom: 16px;
    line-height: 1.4;
}

table {
    width: 100%;
    table-layout: fixed;
    overflow-wrap: break-word;
    border-spacing: 0;
}

td, th {
    padding: 6px 10px;
}

tr:nth-child(2n) {
    background-color: #e5a74915;
}

@media (min-width: 1200px) {
    .main-content img {
        margin: 24px 25%;
        max-width: 50%;
    }
}

.faq-section {
    --gap: 16px;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
}

.faq-title {
    font-size: 40px;
    line-height: 1;
    margin: 0;
}

.faq-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 24px;
}

.faq-list {
    align-items: flex-start;
}

.accordion svg {
    font-size: 20px;
    flex: 0 0 20px;
    transform: rotateZ(-90deg);
}

.accordion_active svg {
    transform: rotateZ(90deg);
    color: #ffcb2f;
}

.accordion {
    border-radius: 8px;
    background-color: #e5a74915;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition-property: background-color, box-shadow;
    transition-duration: 0.2s;
    user-select: none;
    margin-bottom: 8px;
}

.accordion_active {
    box-shadow: inset 0 0 16px rgba(0, 0, 0, 0.05);
}

.accordion:active {
    background-color: #e5a74905;
}

.accordion h3 {
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    padding: 16px 24px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.accordion > div {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    margin: 0;
}

.accordion_active > div {
    padding-bottom: 16px;
}

.accordion:last-of-type {
    margin-bottom: 24px;
}

.accordion-content {
    padding: 16px 24px;
    margin: 0;
}

.accordion-divider {
    height: 2px;
    background-color: #dbdbdb;
}

.accordion_active > div {
    max-height: 1000px;
}

.footer {
    padding: var(--global-gap) 0;
    overflow: hidden;
    width: 100%;
    background-color: #04418d;
    color: #fff;
}

.footer-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-main {
    flex: 1 1;
    display: flex;
    flex-direction: column;
}

.footer-copyright {
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-link {
    width: 100%;
    aspect-ratio: 2/1;
    height: 50px;
    padding: 6px 12px;
    margin-bottom: 16px;
}

.footer-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

@media (min-width: 1200px) {
    .footer-copyright {
        text-align: left;
    }
}

.header {
    width: 100%;
    overflow: visible;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    color: #000;
    z-index: 100;
    background-color: #04418d;
    padding: 12px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header-logo {
    padding: 4px 0;
    display: flex;
    flex-shrink: 0;
}

.header-logo-image {
    object-fit: contain;
    object-position: center;
}

@media (min-width: 1200px) {
    .header {
        padding: 20px 0;
    }

    .header-content {
        gap: 32px;
    }

    .header-logo {
        padding: 8px 0;
    }

    .header-logo-image {
        width: 180px;
    }
}

.header-nav {
    flex: 1 1;
    display: none;
    align-items: center;
    gap: 8px;
}

.header-nav-link {
    white-space: nowrap;
    cursor: pointer;
    padding: 0 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.header-nav-link:hover {
    color: #ffcb2f80;
}

.header-button {
    margin-left: auto;
    margin-right: 14px;
}

.mobile-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    width: 45px;
    height: 45px;
    background-color: transparent;
    border: none;
    margin-left: auto;
    color: #ffcb2f;
    cursor: pointer;
    outline: none;
    flex-shrink: 0;
}

.mobile-menu-button:active {
    opacity: 0.7;
}

@media (min-width: 1200px) {
    .header-nav {
        display: flex;
    }

    .header-nav-link {
        font-size: 16px;
    }

    .mobile-menu-button {
        display: none;
    }
}

.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background-color: #04418d;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.mobile-nav.hidden {
    display: none !important;
}

@media (min-width: 1200px) {
    .mobile-nav {
        display: none !important;
    }
}

.partners-wrapper {
    position: relative;
    background-color: #e5a74915;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.partners {
    width: 100%;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 16px 0;
    gap: 0;
    scrollbar-width: none;
}

.partners::-webkit-scrollbar {
    display: none;
}

.partner {
    scroll-snap-align: center;
    flex: 0 0 200px;
    aspect-ratio: 2/1;
    border-radius: 16px;
    padding: 16px;
    max-width: 180px;
}

.partner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.overscroll-button {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 38px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e5a74915;
    color: #ffcb2f;
    font-size: 20px;
    cursor: pointer;
    z-index: 1;
    backdrop-filter: blur(20px);
    transition-property: opacity;
    transition-duration: 0.2s;
}

.overscroll-button-hidden {
    opacity: 0;
}

.overscroll-button-start {
    left: 0;
}

.overscroll-button-end {
    right: 0;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 768px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 3px 12px 2px rgba(10, 199, 165, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px 4px rgba(10, 199, 165, 0.5);
    }
    100% {
        box-shadow: 0 3px 12px 2px rgba(10, 199, 165, 0.3);
    }
}

@keyframes pulseScale {
    0% {
        transform: scale(1);
        box-shadow: 0 3px 12px 2px rgba(10, 199, 165, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px 4px rgba(10, 199, 165, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 3px 12px 2px rgba(10, 199, 165, 0.3);
    }
}

.button {
    position: relative;
    z-index: 1;
    width: max-content;
    min-height: 38px;
    border-radius: 10px;
    border: none;
    color: #fff;
    background-color: #0ac7a5;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    font-weight: 600;
    min-width: 100px;
    overflow: visible;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px 2px rgba(10, 199, 165, 0.3);
}

.button:hover {
    animation: pulseScale 1.5s ease-in-out infinite;
}

.floating-button:hover {
    animation: pulse 1.5s ease-in-out infinite;
}



.button-big {
    padding: 0 24px;
    min-height: 42px;
    min-width: 140px;
}

.mobile-nav .button {
    width: 100%;
    max-width: 280px;
    justify-content: center;
}

.mobile-nav .header-nav-link {
    font-size: 16px;
    padding: 8px 16px;
}

.section {
    display: flex;
    align-items: flex-start;
    padding: var(--global-gap) 0;
}

.section h3 {
    font-size: 20px;
    line-height: 1.1;
    padding-top: 16px;
}

.section img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 24px;
}

h1, h2, h3, h4, h5, h6, ol, p, ul {
    line-height: 1;
}

ol, ul {
    padding-left: 20px;
    line-height: 1.3;
}

p {
    line-height: 1.3;
}

h1 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 5px #000;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 20px;
    font-weight: 500;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero {
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: var(--global-gap) 0;
    background-color: #000;
    color: #fff;
    padding-bottom: 0;
    border-radius: 8px;
    margin-top: 70px;
}

@media (min-width: 768px) {
    .hero {
        margin-top: 80px;
    }
}

@media (min-width: 1200px) {
    .hero {
        margin-top: 100px;
    }
}

.hero-backdrop {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4) 0, rgba(0, 0, 0, 0) 100%);
}

.hero-backdrop img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    object-fit: contain;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--global-gap);
    padding-top: 100px;
    box-shadow: inset 0 0 200px 40px #032858;
}

@media (min-width: 768px) {
    .hero-content {
        padding-top: 150px;
    }
}

@media (min-width: 1200px) {
    .hero-content {
        padding-top: 200px;
    }
}

.hero h1 {
    margin: 0;
    margin-bottom: 30px;
}

.hero h3 {
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 0 5px #000;
}

.floating-button {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

@media (min-width: 1200px) {
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 32px;
    }
    
    h3 {
        font-size: 24px;
    }

    .d-xl-none {
        display: none !important;
    }
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --global-gap: 16px;
}

a {
    color: #e5a749;
}

hr {
    display: none;
}

body, html {
    margin: 0;
    padding: 0;
    min-width: 375px;
    width: 100%;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #032858;
    color: #ddd;
}

main {
    flex: 1 1;
    min-width: 375px;
    width: 100%;
    overflow-x: hidden;
}

.table {
    width: 100%;
    overflow-x: auto;
    padding: var(--global-gap) 0;
}

.table-cell {
    min-height: 40px;
    display: flex;
    padding: 12px;
    max-width: 100%;
    overflow: hidden;
}

.table-head {
    font-weight: 500;
    background-color: #e9e9e9;
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.table-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    color: #faf3c0;
}

.table-row:nth-child(odd) {
    background-color: #f8f8f8;
    border-radius: 8px;
}

@media (min-width: 1200px) {
    :root {
        --global-gap: 32px;
    }
    
    main {
        padding: 0 0 var(--global-gap);
    }
}
.footer-logo {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}