/* ========================================
   FAQ Styles - Independent, no external deps
   ======================================== */

/* Banner */
.faq-banner{ 
   position: relative; 
   width:100%; 
   margin-bottom:30px; 
 } 
 .faq-banner img{ 
   border-radius: 15px; 
 } 
 .faq-banner .faq-banner-block{ 
   position: absolute; 
   top: calc(50% - 65px); 
   left: 6%; 
   width: 430px; 
   height: 120px; 
   text-align: center; 
 } 
 .en .faq-banner .faq-banner-block{ 
   top: calc(50% - 75px); 
 } 
 .faq-banner .faq-banner-title{ 
   font-size: 48px; 
   text-align: left; 
   letter-spacing: 5px; 
   font-weight: bold; 
 } 
 .faq-banner-block .faq-banner-intro { 
   font-size: 16px; 
   text-align: left; 
   font-weight:500; 
 }

/* Layout */
.faq-section {
    padding: 30px 0 60px;
}
.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Content box */
.faq-content {
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
}

/* Category headings */
.faq-category {
    font-size: 24px;
    font-weight: 600;
    font-style: normal;
    text-align: left;
    font-family: 'Abril Fatface', serif;
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e4e4e4;
    color: #333;
}
.faq-category:first-child {
    margin-top: 0;
}

/* FAQ Item */
.faq-item {
    margin-bottom: 5px;
}

/* FAQ Title (clickable) */
.faq-title {
    padding: 12px 25px;
    border: 1px solid #e4e4e4;
    cursor: pointer;
    background-color: #f7f7f7;
    position: relative;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    transition: background-color 0.2s, color 0.2s;
    padding-right: 45px;
}
.faq-title:hover {
    background-color: #efefef;
    color: #333;
}
.faq-title.collapsed {
    background-color: #f7f7f7;
}
.faq-title:not(.collapsed) {
    background-color: #fff;
    border-bottom-color: transparent;
}

/* FAQ icon (toggle indicator) */
.faq-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #999;
    transition: all 0.3s ease;
}
.faq-icon::before {
    top: 9px;
    left: 3px;
    width: 14px;
    height: 2px;
}
.faq-icon::after {
    top: 3px;
    left: 9px;
    width: 2px;
    height: 14px;
}
.collapsed .faq-icon::after {
    transform: rotate(0deg);
}
.faq-title:not(.collapsed) .faq-icon::after {
    transform: rotate(90deg);
}

/* FAQ Answer */
.faq-answer-inner {
    padding: 15px 25px;
    border: 1px solid #e4e4e4;
    border-top: none;
    background: #fff;
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}
.faq-answer-inner p {
    margin-bottom: 10px;
}
.faq-answer-inner p:last-child {
    margin-bottom: 0;
}
.faq-answer-inner a {
    color: #207adf;
}
.faq-answer-inner a:hover {
    color: #FF7F26;
}

/* Responsive */
@media screen and (max-width: 767px) {
    .faq-content {
        padding: 0 10px;
        flex: 0 0 100%;
        max-width: 100%;
        border-radius: 0 0 15px 15px;
    }
    .faq-title {
        padding: 10px 15px;
        padding-right: 40px;
        font-size: 14px;
    }
    .faq-answer-inner {
        padding: 10px 15px;
        font-size: 13px;
    }
    .faq-category {
        font-size: 20px;
        margin: 20px 0 10px;
    }
}
