* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-y: auto;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f4f4f4;
    color: #222;
}

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

/* HEADER */
header {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    height: 65px;
    top: 0;
    left: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
}

.logo img {
    width: 28px;
    fill: #4460ff;
}

main {
    margin-top:65px
}

.container {
    padding: 18px 30px;
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
}

.info-item {
    background: #fafafa;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    margin-top: 2rem;
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #e2e2e2;
}

.footer-links a {
    margin: 0 10px;
    color: #4460ff;
    text-decoration: none;
}

#hamburgerMenuIcon {
    cursor: pointer;
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 10;
}

.backdrop.active {
    display: block;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 11;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 25px;
}

.mobile-menu.active {
    left: 0;
}

.card {
    max-width: 700px;
    margin: 30px auto;
    padding: 15px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.content-section {
    background-color: white;
}

ul li{
    margin-bottom: 1rem;
}

.faq-section {
    background-color: white;
    margin-top: 2rem;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    cursor: pointer;
    padding: 15px;
    margin: 0;
}

.faq-question:hover {
    background: #e9e9e9;
}

.faq-answer {
    display: none;
    padding: 15px;
    background: #ffffff;
}


@media (min-width: 768px) {
    #hamburgerMenuIcon {
        display: none;
    }
}