
/* Custom styles for details/summary to ensure consistent look across browsers */
details {
    border: 1px solid #e5e7eb; /* Light gray border */
    border-radius: 0.75rem; /* Rounded corners */
    margin-bottom: 1rem; /* Space between FAQ items */
    background-color: #ffffff; /* White background for each FAQ card */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* Subtle shadow */
    transition: all 0.3s ease-in-out;
}
details[open] {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* Stronger shadow when open */
}
summary {
    font-weight: 600; /* Semi-bold text for questions */
    padding: 1.25rem 1.5rem; /* Ample padding */
    cursor: pointer;
    outline: none; /* Remove outline on focus for a cleaner look */
    position: relative; /* For the custom arrow */
    display: flex;
    align-items: center;
    color: #1f2937; /* Dark gray text color */
}
summary::-webkit-details-marker {
    display: none; /* Hide default arrow on Webkit browsers */
}
summary::after {
    content: '+'; /* Custom plus icon */
    font-size: 1.5rem;
    position: absolute;
    right: 1.5rem;
    transition: transform 0.3s ease-in-out;
    color: #6b7280; /* Gray color for icon */
}
details[open] summary::after {
    content: '-'; /* Change to minus when open */
    transform: rotate(0deg); /* No rotation needed for minus */
}
details[open] summary {
    border-bottom: 1px solid #e5e7eb; /* Separator when open */
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.faq-content {
    padding: 1rem 1.5rem 1.25rem; /* Padding for the answer content */
    color: #4b5563; /* Medium gray text color for answers */
    line-height: 1.7; /* Improved readability */
}
.faq-content ul {
    list-style-type: disc; /* Bullet points for lists */
    padding-left: 1.5rem;
    margin-top: 0.75rem;
}
.faq-content a {
    text-decoration: none;
}
.faq-content a:hover {
    text-decoration: underline;
}