.ace-research-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: #f4f4f4;
    padding: 12px 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.ace-faq-section {
    background: #f9f9fb;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.ace-faq {
    background: white;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    cursor: pointer;
    border: 1px solid #ddd;
}

.ace-faq-question {
    color: #e91e63;
    font-weight: bold;
    margin: 0;
}

.ace-faq-answer {
    display: none;
    padding-top: 10px;
}

.ace-faq.active .ace-faq-answer {
    display: block;
}

.ace-reference-section {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.ace-reference-section ul {
    list-style: none;
    padding: 0;
}

.ace-reference-section li {
    margin-bottom: 5px;
}

.ace-reference-section a {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}

.ace-reference-section a:hover {
    text-decoration: underline;
}