/* FAQ Section Styles */
#frequently {
	width: 100%;
	position: relative;
	padding: 0;
	margin: 5rem 0;
	font-family: "Arial", sans-serif;
}

.frequently__wrapper {
	width: 58.8rem;
	margin: 0 auto;
}

#frequently .faq__question__container {
	width:100%;
	height: 100%;
	display: flex
		;
	flex-direction: column;
	justify-content: center;
}

.frequently__wrapper .title__content {
	display: flex;
	width: 100%;
	justify-content: center;
	position: relative;
}

.frequently__wrapper .title__content .heading {
	width: 100%;
	text-align: center;
	margin: 0;
	color: var(--Green-02, #103025);
	font-family: "Big Shoulders";
	font-size: 3rem;
	font-style: normal;
	font-weight: 900;
	line-height: 120%;
}

.faq__item.active h3 {
	color: var(--Green, #0b6836);
}

.frequently__wrapper__faq {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 1rem;
	margin-top: 2.5rem;
}

.faq__items {
	display: grid;
	grid-template-columns: 1fr;
	row-gap: 1rem;
}

.faq__items .faq__item {
	border-radius: 0.5rem;
	background: rgba(11, 104, 54, 0.1);
	overflow: hidden;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	will-change: transform;
	transition :all 0.5s ease-in-out;
	cursor:pointer;

}


.faq__item__num {
	width: 3.5rem;
	margin-right: 9rem;
	color: var(--Text-Body-T1, #2e2e2e);
	font-family: "Big Shoulders";
	font-size: 3rem;
	font-style: normal;
	font-weight: 900;
	line-height: 120%;
	padding: 1rem 0 1rem 1rem;
	flex-shrink: 0;
}

.faq__item.active .faq__item__num {
	color: var(--Green, #0b6836);
}

.faq__items .faq__item:hover:not(.active) {
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.faq__question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	cursor: pointer;
	position: relative;
	width: 100%;
	padding-bottom:0.5rem;
}



.faq__question h3 {
	color: var(--Text-Body-T1, #2e2e2e);
	font-family: "Big Shoulders";
	font-size: 1.25rem;
	font-style: normal;
	font-weight: 600;
	line-height: 150%;
	margin: 0;
	transition: color 0.3s ease;
}

.btn__toggle__faq {
	width: 2rem;
	height: 2rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: none;
	background: transparent;
	cursor: pointer;
	transition: transform 0.3s ease;
	will-change: transform;
}

.plus-icon {
	color: var(--Text-Body-T1, #2e2e2e);
	width: 100%;
	height: 100%;
	transition: transform 0.3s ease;
}

.faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.3s ease;
	padding: 0 1rem;
	will-change: max-height;
}

.faq__answer p {
	opacity: 0;
	transform: translateY(-10px);
	transition: transform 0.3s ease, opacity 0.3s ease;
	font-size: 1rem;
	line-height: 150%;
	color: var(--Text-Body-60);
	margin: 0;
	will-change: transform, opacity;
}

/* Active states */
.faq__item.active .faq__answer {
	max-height: 500px;
	padding: 0 1rem 1rem 1rem;
}

.faq__item.active .faq__answer p {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.15s;
}

.faq__item.active .plus-icon {
	transform: rotate(180deg);
}

.faq__item.active .vertical-line {
	opacity: 0;
	transition: opacity 0.2s ease;
}

.faq__item__num__mb {
	display:none;
}
.btn__toggle__faq__bg {
	display:none ;
}

.frequently__wrapper .title__content {
	flex-direction: column;
	align-items:center;
}

.frequently__wrapper .sub__title {
	color: var(--Orange-03, #FF7A00);
    font-family: "Refresh Screen";
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 400;
    line-height: 111%;
    letter-spacing: 0.125rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

/* Mobile styles */
@media (max-width: 639px) {
	.frequently__wrapper .sub__title {
		display:none;
	}
	.frequently__wrapper {
		width: 100%;
		padding: 0 1rem;
	}

	.frequently__wrapper .title__content .heading {
		font-size: 1.75rem;
		text-align:start;
	}

	#frequently {
		margin: 3rem 0;
	}

	.frequently__wrapper__faq {
		margin-top: 1.5rem;
	}

	.faq__question h3 {
		font-size: 1.125rem;
		display:flex;
		align-items:center;
		width : 80%;
	}

	.faq__item__num {
		display: none;
	}

	.faq__items .faq__item {
		display: block;
	}
	.faq__item__num__mb {
		display:block;
		margin-right: 0.75rem;
		font-family: "Big Shoulders";
		font-size: 1.125rem;
		font-style: normal;
		font-weight: 600;
		line-height: 150%;
	}



	.faq__question {
		padding: 0.62rem 0.75rem 0.75rem 0.75rem;
	}
	.faq__item .faq__answer {
		padding: 0 0.75rem 0 0.75rem;
	}
	.faq__item.active .faq__answer {
		padding: 0 0.75rem 0.75rem 0.75rem;

	}
	.faq__answer p {
		color: var(--text-body-75, rgba(46, 46, 46, 0.75));
		font-family: Poppins;
		font-size: 0.75rem;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
		font-size: 0.75rem;

	}
	.faq__item.active .faq__item__num__mb {
		color: var(--Green, #0b6836);
	}
	.faq__item.active .plus-icon {
		color:white;
	}


.btn__toggle__faq {
	align-items:flex-start;
}
.btn__toggle__faq__bg {
	display:block !important;
	z-index: -1;
	position: absolute;
	border-radius: 0rem 0.451rem 0rem 0.90194rem;
	width: 2.93138rem;
	height: 2.875rem;
	right: 0;
	background: var(--Orange, #FFA53D);

	transform:scale(0);
	transition:all 0.3s ease-in-out;
}
.faq__item.active .btn__toggle__faq__bg {
	transform:scale(1);

}
.btn__toggle__faq {

	transform: translateX(0.15rem);
	width: 1.75rem;
	height: 1.75rem;
	padding: 0;

}
.faq__question {
	align-items:start;
}
}