body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f9fafb;
    padding: 0;
    color: #333;
}

.container {
    max-width: 100%;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

h1 {
    text-align: center;
    color: #121523;
}

h2 {
    margin-top: 30px;
    color: #121523;
}

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

.question {
    cursor: pointer;
    padding: 15px;
    font-weight: bold;
    position: relative;
    transition: background 0.3s;
}

.question:hover {
    background: #0bbaf4;
}

.question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
}

.question.active::after {
    content: "−";
}

.answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
}

.answer-content {
    padding: 10px 0;
}

/*ul {
    margin: 10px 0 10px 20px;
}*/