@import url('/assets/css/globalcolor.css');

#section-faq-content {
    background-color: var(--blue-main);
    background-image: linear-gradient(rgba(0, 0, 0, 0.88), rgba(0, 12, 36, 0.932)), url("/assets/images/earth-main.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 70vh;
}

#section-12351315{

    background-image: linear-gradient(180deg, var(--blue-main) , rgba(0, 12, 36, 0.932));
}


.faq-category {
    margin-bottom: 50px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-answer a {
    color: #007bff;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-answer ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 16px;
        padding: 15px;
    }
    
    .faq-question::after {
        right: 15px;
    }
}