:root {
    --primary-color: #2E3192;
    --secondary-color: #00AEEF;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-light: #666666;
    --light-blue: #E8F4FD;
}

.about-hero {
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.faq-page-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-page-header h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-page-header p {
    color: var(--text-light);
    font-size: 16px;
}

.faq-page-list {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(46, 49, 146, 0.06);
    overflow: hidden;
}

.faq-page-item {
    border-bottom: 1px solid rgba(46, 49, 146, 0.08);
}

.faq-page-item:last-child {
    border-bottom: none;
}

.faq-page-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-page-question:hover {
    background: rgba(46, 49, 146, 0.03);
}

.faq-page-question-number {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-page-question-text {
    flex: 1;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
    padding-right: 20px;
}

.faq-page-arrow {
    color: var(--primary-color);
    font-size: 14px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-page-item.active .faq-page-arrow {
    transform: rotate(180deg);
}

.faq-page-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 30px;
    background: rgba(46, 49, 146, 0.02);
}

.faq-page-item.active .faq-page-answer {
    max-height: 400px;
    padding: 0 30px 30px;
}

.faq-page-answer p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    margin: 15px 38px;
}

.faq-page-answer ul {
    margin: 15px 38px;
    padding-left: 20px;
}

.faq-page-answer li {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 10px;
}

.faq-page-contact {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), #1A1C5B);
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.faq-page-contact h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-page-contact p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.faq-page-contact-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-page-contact-btn:hover {
    background: #0099d9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .faq-page-header h1 {
        font-size: 28px;
    }
    
    .faq-page-question {
        padding: 20px 20px;
    }
    
    .faq-page-answer p,
    .faq-page-answer ul {
        margin-left: 30px;
    }
}
