/* style/faq.css */
.page-faq {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-faq .hero-faq-section {
    background: linear-gradient(135deg, #0A1931 0%, #1A2A44 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    border-bottom: 5px solid #FFD700;
}

.page-faq .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-faq .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
}

.page-faq .hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-faq .hero-description a {
    color: #FFD700;
    text-decoration: underline;
}

.page-faq .hero-description a:hover {
    color: #fff;
}

.page-faq .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #FFD700;
    color: #0A1931;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-faq .cta-button:hover {
    background: #e0b800;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-faq .faq-list-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.page-faq .container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-faq .section-title {
    font-size: 2.5em;
    color: #0A1931;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-faq .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-faq .faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-faq .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #0A1931;
    color: #FFD700;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-faq .faq-question:hover {
    background-color: #1A2A44;
    color: #ffffff;
}

.page-faq .faq-question h3 {
    margin: 0;
    font-size: 1.3em;
    font-weight: bold;
}

.page-faq .faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    transition: transform 0.3s ease;
    line-height: 1;
}

.page-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: #f9f9f9;
    color: #333;
    padding: 0 25px;
}

.page-faq .faq-item.active .faq-answer {
    max-height: 800px; /* Đủ cao để chứa nội dung */
    padding: 25px;
    border-top: 1px solid #e0e0e0;
}

.page-faq .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #FFD700;
}

.page-faq .faq-answer p {
    margin-bottom: 15px;
}

.page-faq .faq-answer ul,
.page-faq .faq-answer ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.page-faq .faq-answer li {
    margin-bottom: 8px;
}

.page-faq .faq-answer a {
    color: #0A1931;
    text-decoration: underline;
}

.page-faq .faq-answer a:hover {
    color: #FFD700;
}

.page-faq .conclusion-text {
    text-align: center;
    font-size: 1.1em;
    margin-top: 40px;
    color: #0A1931;
}

.page-faq .conclusion-text a {
    color: #FFD700;
    text-decoration: underline;
}

.page-faq .conclusion-text a:hover {
    color: #0A1931;
}

.page-faq .cta-bottom {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-faq .image-wrapper {
    margin-top: 20px;
    text-align: center;
}

.page-faq .content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-faq .hero-title {
        font-size: 2.8em;
    }
    .page-faq .hero-description {
        font-size: 1.1em;
    }
    .page-faq .section-title {
        font-size: 2em;
    }
    .page-faq .faq-question h3 {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-faq .hero-faq-section {
        padding: 60px 15px;
    }
    .page-faq .hero-title {
        font-size: 2.2em;
    }
    .page-faq .hero-description {
        font-size: 1em;
    }
    .page-faq .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-faq .faq-list-section {
        padding: 40px 15px;
    }
    .page-faq .section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-faq .faq-question {
        padding: 15px 20px;
    }
    .page-faq .faq-question h3 {
        font-size: 1.1em;
    }
    .page-faq .faq-toggle {
        font-size: 1.5em;
    }
    .page-faq .faq-item.active .faq-answer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-faq .hero-title {
        font-size: 1.8em;
    }
    .page-faq .hero-description {
        font-size: 0.9em;
    }
    .page-faq .cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }
    .page-faq .section-title {
        font-size: 1.5em;
    }
    .page-faq .faq-question h3 {
        font-size: 1em;
    }
    .page-faq .faq-toggle {
        font-size: 1.3em;
    }
}