
/* faq css */

/* <style> */

.faq-container {
    /* max-width: 800px; */
    margin: 0 auto;
    /* background-color: #fff; */
    border-radius: 10px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    padding: 30px;
}

h2 {
    text-align: center;
    color: #fdc700;
    margin-bottom: 30px;
    /* font-size: 52px; */
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.faq-question {
    background-color: #f8f9fa;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: #2c3e50;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #e9f0f7;
}

.faq-arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-arrow .vertical-line,
.faq-arrow .horizontal-line {
    width: 12px;
    height: 2px;
    background-color: #fdc700;
    position: absolute;
    top: 9px;
}

.faq-arrow .vertical-line {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.faq-question.active .faq-arrow .vertical-line {
    transform: rotate(0);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.show {
    max-height: 500px;
    padding: 20px;
}

.faq-answer p {
    margin: 0;
    color: gray;
}

.faq-answer ul {
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-container {
        padding: 20px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 12px 15px;
    }
}
/* </style> */

/* faq css */
h2 { color: #010101; font-weight: 600; font-size: 24px; }
h2 span { border-bottom: #fdc700 3px solid; padding-bottom: 4px; }
 h3 { color: #d14e4e; font-size: 24px; font-weight: 600;   }
p { color: #051330; font-size: 16px; line-height: 22px; font-weight: 400; }
