.box {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.faq {
	position:relative;
}

.headline {
	width:100%;
	height:150px;
}

.heading {
	text-align:center;
	font-size:73px;
}

.f-line {
	font-size:34px;
	color:#000 !important;
	font-weight: 300;
	
}

.faq:before {
    content: '';
    position: absolute;
    background-image: url(../image/flower-three.png);
    background-position: left top;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    top: 10%;
    left: -15px;
    z-index: -1;
	pointer-events: none;
}
.faq:after {
    position: absolute;
    content: '';
    right: -15px;
    background-image: url(../image/flower-right.png);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-position: right;
    z-index: -1;
	top: 60px;
	pointer-events: none;
}

.f-part {
	width: 70% !important;
    margin: 60px auto;
}

/* Accordion Styling */
.item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.que {
    background-color: none !important;
    color: #642003;
    padding: 15px;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: background 0.3s ease;
}

.que:hover {
    background-color: #f9d5b8;
}

.plus {
    position: relative;
    width: 20px;
    height: 20px;
    float: right;
}

.plus::before,
.plus::after {
    content: '';
    position: absolute;
    background-color: black;
    transition: transform 0.3s ease;
}

/* Horizontal bar */
.plus::before {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Vertical bar */
.plus::after {
    width: 1px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Open state: Rotate the vertical bar to form a minus */
.plus.open::after {
    transform: translateX(-50%) rotate(90deg);
}

/* Hover effect when in the open state */
.plus.open:hover {
    transform: scale(1.2); 
}

.ans {
    display: none;
    background-color: #fff;
    padding: 15px;
    color: #444;
}

.ans p {
    margin: 0;
}


.footer {
    margin-top: auto;
}