body {
    font-family: Arial, sans-serif;
    background-color: #f5f7fa;
    margin: 0;
    padding: 30px;
    color: #1f2937;
}

a {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    color: #2563eb;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

h1 {
    margin-bottom: 25px;
    font-size: 32px;
    color: #111827;
}

.faq-container {
    max-width: 800px;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #dbe3ea;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 18px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.question {
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    padding-right: 25px;
}

.question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    font-weight: bold;
    color: #2563eb;
}

.faq-item.active .question::after {
    content: "-";
}

.answer {
    display: none;
    margin-top: 12px;
    line-height: 1.6;
    color: #4b5563;
}