.faq-section {
    padding: 60px 20px;
    background-color: #f9f9f9; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    color: #3C0145;
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    background-color: #fff;
    color: #3C0145;
    cursor: pointer;
    padding: 20px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f1f1f1;
}

.faq-question.active {
    color: #3C0145; 
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #3C0145;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg); 
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #fff;
}

.answer-content {
    padding: 0 20px 20px 20px;
    color: #3C0145;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .faq-title {
        font-size: 2rem;
    }
    .faq-question {
        font-size: 1rem;
    }
}