.faq-section {
    max-width: 1100px;
    min-width: 1100px;
    height: 700px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 15px;
}

details {
    background-color: #f1f1f1;
    padding: 15px;
    border-radius: 5px;
}

summary {
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 5px;
    outline: none;
}

details[open] summary {
    color: #007BFF;
}

details p {
    margin-top: 20px;
}