* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'AspektaVF';
    src: url('../fonts/AspektaVF-Regular.woff2');
}

body {
    font-family: sans-serif;
    background-color: white;
    color: black;
}



/* --- FAQ Section --- */
.faq-heading-containar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.faq-heading {
    padding: 80px 0 20px 0;
    font-size: 36px;
    font-family: 'Lora';
    font-weight: 500;
}

.faq-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 86%;
    margin: 30px auto;
    margin-bottom: 90px;
}

.faq-container {
    width: 86%;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 20px;
    cursor: pointer;
    list-style: none;
}

.faq-item>summary {
    list-style: none;
}

.faq-item>summary::marker,
.faq-item>summary::-webkit-details-marker {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-family: 'Lora';
    font-weight: 600;
    color: #333;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: #888;
    transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
    content: '—';
    font-size: 12px;
    font-weight: 700;
    transform: rotate(0deg);
}

.faq-answer {
    padding-top: 15px;
    font-size: 14px;
    font-family: 'AspektaVF';
    font-weight: 400;
    line-height: 1.6;
    color: #555;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media only screen and (max-width: 700px) {

    .faq-heading {
        padding: 130px 0 20px 0;
        font-size: 26px;
    }

    .faq-section {
        width: 86%;
        margin: 20px auto;
        margin-bottom: 40px;
    }

    .faq-container {
    width: 96%;
}

    .faq-question {
       font-size: 16px;    
}

.faq-answer {
    font-size: 12px;
}

}