.faq-heading{
    border-bottom: #777;
    padding: 20px 60px;
}
.faq-subheading{
    border-bottom: #777;
    padding: 18px 45px;
}
.faq-container{
display: flex;
justify-content: center;
flex-direction: column;

}
.hr-line{
  width: 0%;
  margin: auto;
  
}
/* Style the buttons that are used to open and close the faq-page body */
.faq-page {
    /* background-color: #eee; */
    color: #444;
    cursor: pointer;
    padding: 15px 20px;
    width: 60%;
    border: none;
    outline: none;
    transition: 0.4s;
    margin: auto;

}
.faq-body{
    margin: auto;
    /* text-align: center; */
   width: 50%; 
   padding: auto;
   
}
.faq-img{
	width: 95%; 
	height:300px; 
	margin: 30px;
	margin-right: 30px;
	background-image: url("../img/bg-2.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}	

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.faq-page:hover {
    background-color: #F9F9F9;
}

/* Style the faq-page panel. Note: hidden by default */
.faq-body {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
}

.faq-page:after {
    content: '\02795';
    /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

.active:after {
    content: "\2796";
    /* Unicode character for "minus" sign (-) */
}

.faq {
  margin-left: 15px;
  margin-right:15px;
}

.faq p {
	padding-top: 20px;
	padding-bottom: 20px;
	line-height:25px;
}



/* Style the buttons that are used to open and close the faq-page body */



/* Mobile Responsive Styling */
@media screen and (max-width: 768px) {
    .faq-heading,
    .faq-subheading {
        padding: 15px 30px;
    }

    .faq-page {
        width: 80%; /* Increase width for mobile */
        padding: 10px 15px;
    }

    .faq-body {
        width: 90%; /* Make body width more flexible for smaller screens */
        padding: 10px;
    }

    .faq-img {
        width: 90%; /* Adjust image size for mobile */
        height: 200px; /* Reduce height on mobile */
        margin: 15px;
    }

    .faq {
        margin-left: 10px;
        margin-right: 10px;
    }

    .faq p {
        font-size: 14px; /* Smaller text on mobile */
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

