* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.hero-section {
    background: url('../images/faq.jpeg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    height: 65vh;
    color: white;
}

.breadcrumb-section {
    background-color: #f8f9fa;
    padding: 15px 0;
}

.panel-title-edit {
    font-weight: 600;
}

.panel-title-edit:hover {
    text-decoration: underline;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 15px;
}

.panel-title-edit {
    position: relative;
    width: 100%;
    text-align: left;
    padding-right: 30px;
}

.toggle-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.toggle-icon::before,
.toggle-icon::after {
    content: '';
    position: absolute;
    background-color: #007bff;
    transition: transform 0.25s ease-out;
}

/* Horizontal line */
.toggle-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

/* Vertical line */
.toggle-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

/* When expanded, hide vertical line (minus sign) */
.btn-link[aria-expanded="true"] .toggle-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

/* Hover state */
.btn-link:hover .toggle-icon::before,
.btn-link:hover .toggle-icon::after {
    background-color: #0056b3;
}

/* ===== Fade-In Animation ===== */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}