.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}
.faq-header {
    text-align: center;
    margin-bottom: 40px;
}
.faq-header h1 {
    color: #142864;
    font-size: 2.5em;
    margin-bottom: 10px;
}
.faq-header p {
    color: #666;
    font-size: 1.1em;
}
.faq-item {
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.faq-question {
    padding: 20px;
    background: #f8f9fa;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    color: #142864;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}
.faq-question:hover {
    background: #e9ecef;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
}
.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}
.faq-answer {
    padding: 20px;
    display: none;
    line-height: 1.6;
    color: #333;
}
.faq-answer.active {
    display: block;
}
.course-highlight {
    background: #e8f5e8;
    padding: 10px;
    border-left: 4px solid #28b150;
    margin: 10px 0;
}
.highlight {
    color: #28b150;
    font-weight: bold;
}
.back-to-home {
    text-align: center;
    margin-top: 40px;
}
.back-to-home a {
    display: inline-block;
    padding: 12px 30px;
    background: #28b150;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.back-to-home a:hover {
    background: #218f4a;
}
@media (max-width: 768px) {
    .faq-container {
        padding: 10px;
    }
    .faq-header h1 {
        font-size: 2em;
    }
    .faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .faq-answer {
        padding: 15px;
    }
}
