.wrapper {
    max-width: 950px;
    margin: auto;
    background: var(--service-box);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.08);
    margin-top: 150px;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}

.faq {
    margin-bottom: 2px;
}

.question {
    padding: 18px;
    font-size: 17px;
    font-weight: bold;
    cursor: pointer;
    color: #111;
    border: 2px solid #facc15;
    border-radius: 12px;
    background: white;
    transition: 0.2s;
    margin-bottom: 12px;
}

.question:hover {
    background: #facc15;
    color: #111;
}

.answer {
    display: none;
    padding: 18px;
    line-height: 1.7;
    color: #444;
    background: #fff;
}

.answer.open {
    display: block;
}