/* --- Patient FAQ Module (.faq- prefix) --- */
.faq-section {
    padding: 100px 0;
    background-color: #fdfdfd;
    font-family: 'Montserrat', sans-serif;
    clear: both;
}

.faq-container {
    max-width: 800px; /* Narrow width for easy reading */
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    color: #002147;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-header p {
    color: #666;
    font-size: 1.05rem;
}

/* Accordion Styling */
.faq-item {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FF9900;
}

.faq-item summary {
    padding: 22px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #002147;
    cursor: pointer;
    list-style: none; /* Removes default arrow */
    position: relative;
    outline: none;
}

/* Hides the default marker in Safari/Chrome */
.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Custom Plus/Minus Icon */
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: #FF9900;
    font-weight: 400;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '−'; /* Changes to minus when open */
}

.faq-text {
    padding: 0 25px 25px 25px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    border-top: 1px solid #f4f7f9;
    padding-top: 15px;
}