.faq-wrapper {
font-family: Arial, Helvetica, sans-serif;
padding: 20px;
max-width: 800px;
margin: auto;
background: #ffffff;
color: #222;
}


.faq-wrapper h2 {
font-size: 1.8rem;
margin-bottom: 10px;
text-align: center;
}


.faq-wrapper p.subtitle {
text-align: center;
color: #666;
margin-bottom: 25px;
font-size: 1rem;
}


.faq-item {
border-bottom: 1px solid #e5e5e5;
padding: 15px 0;
}


.faq-question {
background: none;
border: none;
width: 100%;
text-align: left;
font-size: 1.1rem;
font-weight: bold;
padding: 0;
cursor: pointer;
position: relative;
}


.faq-question::after {
content: "+";
position: absolute;
right: 0;
top: 0;
font-size: 1.3rem;
transition: transform 0.2s ease;
}


.faq-item.open .faq-question::after {
transform: rotate(45deg);
}


.faq-answer {
max-height: 0;
overflow: hidden;
color: #555;
font-size: 0.95rem;
line-height: 1.4;
transition: max-height 0.3s ease;
}


.faq-item.open .faq-answer {
max-height: 200px;
margin-top: 10px;
}