/* Default arrow (pointing right when the section is collapsed) */
.questions .card .card-header h5::before {
    content: "\2192"; /* Unicode for right arrow (→) */
    font-size: 2.2rem;
    color: #f41a77; /* Customize the color */
    position: absolute;
    top: 50%;
    left: -1.5rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* When the section is expanded, show the down arrow (↓) */
.questions .card .card-header h5.collapsed::before {
    content: "\2192"; /* Unicode for down arrow (↓) */
    color: #333;
}

/* Optional: Add space between the text and icon */
.questions .card .card-header h5 {
    padding-left: 2rem; /* Adjust padding for better spacing between text and arrow */
}

.h4-bold{
    font-weight: 800 !important;
    font-size: 28px !important;
}
