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

.faq-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-header {
    background-color: #1a2163;
    color: white;
    padding: 25px 30px;
    text-align: center;
}

.faq-header h1 {
    margin: 0;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
}

.faq-header p {
    margin: 10px 0 0;
    opacity: 0.8;
    color: whitesmoke;
}

.faq-content {
    padding: 30px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #1a2163;
}

.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.faq-toggle {
    background-color: #f0f0f0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-question:hover .faq-toggle {
    background-color: #1a2163;
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 10px;
    opacity: 0;
    background-color: #1a2163;
    color: white;
    background-color: white;
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px 10px;
    opacity: 1;
}

.faq-answer p {
    margin-top: 0;
    color: black;
}

.faq-answer ul, .faq-answer ol {
    padding-left: 20px;
    color: white;
    background-color: #1a2163;
    border-radius: 20px;
    padding: 10px;
}

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

.faq-footer {
    background-color: #f9f9f9;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.faq-footer a {
    color: #1a2163;
    text-decoration: none;
    font-weight: 600;
}

.faq-footer a:hover {
    text-decoration: underline;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .faq-container {
        margin: 20px auto;
    }
    
    .faq-header {
        padding: 20px;
    }
    
    .faq-header h1 {
        font-size: 24px;
        color: white;
    }
    
    .faq-content {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
}