.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.faq-title {
    color: #7798CD;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 60px;
}

.faq-item {
    margin-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 30px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.faq-question-label {
    color: #FFA16E;
    font-size: 32px;
    font-weight: bold;
    margin-right: 20px;
    min-width: 40px;
}

.faq-question-text {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    flex: 1;
    line-height: 1.4;
}

.faq-answer-row {
    display: flex;
    align-items: flex-start;
    margin-left: 0;
}

.faq-answer-label {
    color: #7798CD;
    font-size: 32px;
    font-weight: bold;
    margin-right: 20px;
    min-width: 40px;
}

.faq-answer-text {
    color: #666;
    font-size: 20px;
    line-height: 1.6;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-title {
        font-size: 36px;
    }
    
    .faq-question-label,
    .faq-answer-label {
        font-size: 24px;
        min-width: 30px;
    }
    
    .faq-question-text {
        font-size: 20px;
    }
    
    .faq-answer-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 28px;
    }
    
    .faq-question-label,
    .faq-answer-label {
        font-size: 20px;
    }
    
    .faq-question-text {
        font-size: 18px;
    }
    
    .faq-answer-text {
        font-size: 16px;
    }
}
