<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.faqs-container {
    background: white;
    border-radius: 10px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

h1 {
    color: #175c91;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Lato-Regular', sans-serif;
}

.accordion-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-button {
    background-color: #f8f9fa;
    color: #175c91;
    font-family: 'Lato-Regular', sans-serif;
    padding: 15px 20px;
    width: 100%;
    text-align: left;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #175c91;
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #175c91;
}

.accordion-body {
    padding: 20px;
    background-color: white;
    font-family: 'Lato-Regular', sans-serif;
    color: #333;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faqs-container {
        padding: 20px;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }
}</pre></body></html>