.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2em 1em;
    font-family: 'Segoe UI', sans-serif;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.faq-section h2 {
    font-size: 1.8em;
    margin-bottom: 1em;
    text-align: center;
    color: #333;
}

.faq-search-input {
    display: none;
    margin: 0 auto 2em auto;
    width: 100%;
    max-width: 400px;
    padding: 0.75em;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    transition: border-color 0.3s ease;
    overflow: hidden;
}

.faq-item[open] {
    border-color: #007cba;
}

.faq-item summary {
    cursor: pointer;
    padding: 1em 1.2em;
    font-weight: 600;
    font-size: 1em;
    position: relative;
    list-style: none;
}

.faq-item summary::marker {
    display: none;
}

.faq-icon {
    position: absolute;
    right: 1em;
    top: 1.1em;
    font-size: 1.2em;
    color: #999;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    color: #007cba;
}

.faq-answer {
    padding: 1em 1.2em 1.5em 1.2em;
    border-top: 1px solid #eee;
    font-size: 0.95em;
    line-height: 1.6;
    color: #444;
    background-color: #fafafa;
}
