body {
    font-family: 'Poppins', sans-serif;
}
.hero-bg {
    background-color: #f8f9fa;
}
#searchResults div:hover {
    background-color: #e9ecef;
}
.faq-item details > summary {
    list-style: none;
}
.faq-item details > summary::-webkit-details-marker {
    display: none;
}
.faq-item details[open] summary .arrow-down {
    transform: rotate(180deg);
}
.arrow-down {
    transition: transform 0.2s;
}
.prose h1 {
    font-size: 2rem;
    font-weight: 800;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}
.prose h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f3f4f6;
}
.prose p, 
.prose ul,
.prose ol {
    line-height: 1.75;
    font-size: 1rem;
    color: #374151;
}
.prose ul li,
.prose ol li {
    margin-top: 0.5rem;
}
.prose a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}
.prose a:hover {
    text-decoration: underline;
}
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 240px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 10;
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
}
.dropdown-content a {
    color: #1f2937;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 1rem;
}
.dropdown-content a:hover {
    background-color: #f3f4f6;
}
.show {
    display: block;
}