@import url('https://fonts.googleapis.com/css2?family=Jost:wght@100&family=Sora:wght@100..800&display=swap');

body {
    font-family: "Sora", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;

    background-color: #1A1B17;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Header */

.header {
    width: 100%;
    height: 70px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.logo {
    width: 200px;
}

.page {
    margin: 50px 30%;
}

h1{
    color: #c9fb01;
    font-size: 30px;
}

p {
    color: #D0D7D1;
    font-size: 15px;
}

.faq-section {
    margin: 50px auto;
    background-color: #323232;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq-section h3 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
}

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

.faq-question {
    width: 100%;
    text-align: left;
    background-color: #292929;
    border: none;
    padding: 20px;
    font-size: 1.25em;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    color: white;
}

.faq-question:hover {
    background-color: #292929;
}

.faq-answer {
    display: none;
    padding: 20px;
    background-color: #292929;
    font-size: 1em;
}

.faq-answer p {
    margin: 0;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question {
    background-color: #c9fb01;
    color: black;
}

.support-email p, .support-email a {
font-size: 20px;
color: white;
}

@media screen and (max-width: 800px) {
    .logo {
        width: 150px;
    }

    .page {
        margin: 50px 10%;
    }
}