/* FAQ Page Styles */
.faq-page {
    padding-bottom: 0;
    background-color: #0a0a14;
    background-image: linear-gradient(135deg, #0a0a14 0%, #1a1a2e 50%, #0a0a14 100%);
    position: relative;
    overflow: hidden;
}

.faq-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="none" stroke="rgba(100,100,255,0.1)" stroke-width="1" d="M0,50 L100,50 M50,0 L50,100 M0,0 L100,100 M0,100 L100,0" /></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

/* Banner Styles */
.page-banner {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(90deg, #3023AE 0%, #7042DB 50%, #C86DD7 100%);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="none" stroke="rgba(255,255,255,0.15)" stroke-width="1" d="M0,0 L100,100 M0,20 L80,100 M20,0 L100,80 M0,40 L60,100 M40,0 L100,60 M0,60 L40,100 M60,0 L100,40 M0,80 L20,100 M80,0 L100,20" /></svg>');
}

.page-banner .banner-content {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Breadcrumb Styles */
.breadcrumb-container {
    padding: 15px 0;
    background: linear-gradient(90deg, #16161f 0%, #232342 100%);
    border-bottom: 1px solid rgba(100, 100, 255, 0.2);
    position: relative;
    z-index: 1;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: inline-block;
    margin-right: 5px;
    color: #a0a0ff;
}

.breadcrumb li:after {
    content: '>';
    margin-left: 5px;
    color: #7878b5;
}

.breadcrumb li:last-child:after {
    display: none;
}

.breadcrumb a {
    color: #a0a0ff;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #ffffff;
}

/* Section Title Styles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #e0e0ff;
    text-shadow: 0 0 10px rgba(100, 100, 255, 0.3);
}

.title-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #3023AE, #C86DD7);
    margin: 0 auto;
}

/* FAQ Section Styles */
.faq-section {
    padding: 60px 0 0;
    background: linear-gradient(135deg, #121225 0%, #1d1d35 100%);
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

/* FAQ Categories */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.category-item {
    padding: 12px 25px;
    margin: 0 10px 15px;
    background: rgba(30, 30, 60, 0.6);
    border: 1px solid rgba(100, 100, 255, 0.2);
    border-radius: 30px;
    color: #a0a0ff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-item:hover {
    background: rgba(112, 66, 219, 0.2);
    border-color: #7042DB;
    transform: translateY(-2px);
}

.category-item.active {
    background: linear-gradient(90deg, #3023AE, #7042DB);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(48, 35, 174, 0.3);
}

.category-item span {
    font-weight: 600;
    font-size: 16px;
}

/* FAQ Content */
.faq-content {
    max-width: 900px;
    margin: 0 auto 60px;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(30, 30, 60, 0.6);
    border: 1px solid rgba(100, 100, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 0 10px rgba(100, 100, 255, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(100, 100, 255, 0.15);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #e0e0ff;
}

.toggle-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3023AE, #7042DB);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    transition: all 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #7042DB, #C86DD7);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: none;
    color: #d0d0ff;
    line-height: 1.6;
    border-top: 1px solid rgba(100, 100, 255, 0.1);
}

.faq-item.active .faq-answer {
    padding: 20px 25px;
    max-height: 1000px;
    display: block;
}

.faq-answer p {
    margin-top: 0;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer a {
    color: #7042DB;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-answer a:hover {
    color: #C86DD7;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-banner {
        height: 250px;
    }
    
    .page-banner h1 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .faq-categories {
        flex-wrap: wrap;
    }
    
    .category-item {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        height: 200px;
    }
    
    .page-banner h1 {
        font-size: 30px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .page-banner {
        height: 150px;
    }
    
    .page-banner h1 {
        font-size: 24px;
    }
    
    .section-title h2 {
        font-size: 20px;
    }
    
    .category-item {
        flex: 0 0 calc(50% - 20px);
        margin: 0 5px 10px;
        padding: 8px 15px;
        text-align: center;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
} 