.about-section {
	width: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 60px 0;
	margin: 0;
}

.about-container {
	width: 70%;
	margin: 0 auto;
	color: #fff;
}

.about-title {
	font-size: 42px;
	text-align: center;
	margin-bottom: 15px;
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about-subtitle {
	font-size: 20px;
	text-align: center;
	margin-bottom: 50px;
	opacity: 0.95;
	font-weight: 300;
}

.about-content {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.about-text {
	text-align: center;
	line-height: 1.9;
	font-size: 17px;
	max-width: 1000px;
	margin: 0 auto;
}

.about-text p {
	margin-bottom: 20px;
	opacity: 0.95;
}

.about-features {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	margin-top: 30px;
}

.feature-item {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 16px;
	padding: 35px 25px;
	text-align: center;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.25);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-icon {
	font-size: 48px;
	display: block;
	margin-bottom: 20px;
}

.feature-item h3 {
	font-size: 20px;
	margin-bottom: 12px;
	font-weight: 600;
}

.feature-item p {
	font-size: 15px;
	opacity: 0.9;
	line-height: 1.6;
}

.faq-section {
	width: 100%;
	background: #f8f9fa;
	padding: 70px 0;
	margin: 0;
}

.faq-container {
	width: 70%;
	margin: 0 auto;
}

.faq-title {
	font-size: 38px;
	text-align: center;
	margin-bottom: 50px;
	color: #333;
	font-weight: 700;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq-item {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
	padding: 25px 30px;
	display: flex;
	align-items: center;
	cursor: pointer;
	user-select: none;
	background: #fff;
	transition: background 0.3s ease;
}

.faq-question:hover {
	background: #f8f9fa;
}

.faq-icon {
	font-size: 28px;
	font-weight: 700;
	color: #667eea;
	margin-right: 20px;
	min-width: 30px;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-question h3 {
	font-size: 19px;
	color: #333;
	font-weight: 600;
	margin: 0;
	flex: 1;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
	background: #f8f9fa;
}

.faq-item.active .faq-answer {
	max-height: 300px;
	padding: 25px 30px;
}

.faq-answer p {
	font-size: 16px;
	color: #555;
	line-height: 1.8;
	margin: 0;
}

@media (min-width: 1025px) {
	.about-section {
		padding: 80px 0;
	}

	.about-container {
		width: 70%;
		max-width: 1200px;
	}

	.about-title {
		font-size: 48px;
		margin-bottom: 20px;
	}

	.about-subtitle {
		font-size: 22px;
		margin-bottom: 60px;
	}

	.about-text {
		font-size: 18px;
		line-height: 2;
	}

	.about-features {
		grid-template-columns: repeat(4, 1fr);
		gap: 30px;
		margin-top: 50px;
	}

	.feature-item {
		padding: 40px 30px;
		border-radius: 20px;
	}

	.feature-icon {
		font-size: 56px;
		margin-bottom: 25px;
	}

	.feature-item h3 {
		font-size: 22px;
		margin-bottom: 15px;
	}

	.feature-item p {
		font-size: 16px;
	}

	.faq-section {
		padding: 80px 0;
	}

	.faq-container {
		width: 70%;
		max-width: 1200px;
	}

	.faq-title {
		font-size: 44px;
		margin-bottom: 60px;
	}

	.faq-list {
		gap: 25px;
	}

	.faq-item {
		border-radius: 16px;
	}

	.faq-question {
		padding: 30px 40px;
	}

	.faq-icon {
		font-size: 32px;
		margin-right: 25px;
		min-width: 35px;
	}

	.faq-question h3 {
		font-size: 21px;
	}

	.faq-item.active .faq-answer {
		padding: 30px 40px;
		max-height: 400px;
	}

	.faq-answer p {
		font-size: 17px;
		line-height: 1.9;
	}
}

@media (min-width: 761px) and (max-width: 1024px) {
	.about-container,
	.faq-container {
		width: 85%;
	}

	.about-features {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.feature-item {
		padding: 30px 20px;
	}
}

@media (max-width: 760px) {
	.about-section {
		padding: 50px 0;
	}

	.about-container {
		width: 95%;
		padding: 0 10px;
	}

	.about-title {
		font-size: 32px;
		margin-bottom: 12px;
	}

	.about-subtitle {
		font-size: 17px;
		margin-bottom: 35px;
	}

	.about-text {
		font-size: 15px;
		padding: 0 5px;
		line-height: 1.7;
	}

	.about-features {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
		margin-top: 25px;
	}

	.feature-item {
		padding: 25px 15px;
		border-radius: 12px;
	}

	.feature-icon {
		font-size: 36px;
		margin-bottom: 15px;
	}

	.feature-item h3 {
		font-size: 17px;
		margin-bottom: 8px;
	}

	.feature-item p {
		font-size: 13px;
	}

	.faq-section {
		padding: 50px 0;
	}

	.faq-container {
		width: 95%;
		padding: 0 10px;
	}

	.faq-title {
		font-size: 28px;
		margin-bottom: 35px;
	}

	.faq-list {
		gap: 15px;
	}

	.faq-question {
		padding: 20px;
	}

	.faq-icon {
		font-size: 24px;
		margin-right: 15px;
		min-width: 25px;
	}

	.faq-question h3 {
		font-size: 16px;
	}

	.faq-item.active .faq-answer {
		padding: 20px;
	}

	.faq-answer p {
		font-size: 14px;
		line-height: 1.7;
	}
}

.content-box {
	width: 70%;
	height: auto;
	padding: 10px 0;
	margin: 0 auto;
}

.caption_text {
	width: 100%;
	height: auto;
	margin: 10px auto;
	font-size: 30px;
	text-align: left;
	line-height: 2;
	text-transform: capitalize;
}

.caption_text span {
	margin-left: 5px;
}

.ct_box_one {
	width: 100%;
	height: auto;
	padding: 15px 0;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}

.ct_one_box {
	width: 22%;
	height: auto;
	min-height: auto;
	position: relative;
	background-color: #FFFFFF;
	box-shadow: 0 0.14px 2.29266px rgb(0 0 0 / 3%), 0 0.37px 4.42626px rgb(0 0 0 / 5%), 0 3px 7px rgb(0 0 0 / 9%);
	margin: 0 20px 20px 0;
	border-radius: 12px;
	padding: 10px;
}

.ct-box:nth-of-type(4n) {
	margin-right: 0px;
}

.ct_one_box img {
	width: 90%;
	height: 150px;
	display: block;
	margin: 30px auto 0;
	border-radius: 14px;
}

.ct-text_one {
	width: 100%;
	line-height: 1.5;
	color: #000000;
}

.ct-text_one p {
	width: 100%;
	height: auto;
}

.ct-text_one p:nth-of-type(1) {
	font-size: 18px;
	text-transform: capitalize;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.ct-text_one p:nth-of-type(2) {
	font-size: 14px;
	color: gray;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.ct_box_two {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 15px 0;
	display: flex;
	flex-wrap: wrap;
}

.ct_two_box {
	width: 31%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 10px 25px 10px;
	border-bottom: 1px solid gainsboro;
	padding-bottom: 3px;
}

.ct_two_box:nth-of-type(1),
.ct_two_box:nth-of-type(2),
.ct_two_box:nth-of-type(3) {
	display: block;
}

.ct_two_box img {
	width: 35%;
	height: 110px;
	display: block;
	border-radius: 4px;
}

.ct_two_box:nth-of-type(1) img,
.ct_two_box:nth-of-type(2) img,
.ct_two_box:nth-of-type(3) img {
	width: 100%;
	height: 240px;
}

.ct-text_tow {
	width: 62%;
	height: auto;
}

.ct_two_box:nth-of-type(1) .ct-text_tow,
.ct_two_box:nth-of-type(2) .ct-text_tow,
.ct_two_box:nth-of-type(3) .ct-text_tow {
	width: 100%;
	padding: 10px 0;
}

.ct-text_tow p {
	line-height: 1.5;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
}

.ct-text_tow p:nth-of-type(1) {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
}

.ct-text_tow p:nth-of-type(2) {
	font-size: 12px;
	-webkit-line-clamp: 2;
	font-weight: 600;
	margin: 5px 0;
}

.ct-text_tow p:nth-of-type(3) {
	-webkit-line-clamp: 1;
	font-size: 13px;
}

.ct_two_box:nth-of-type(1) .ct-text_tow p:nth-of-type(2),
.ct_two_box:nth-of-type(2) .ct-text_tow p:nth-of-type(2),
.ct_two_box:nth-of-type(3) .ct-text_tow p:nth-of-type(2) {
	font-size: 13px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.m-inner-box {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
}

.m-lbox {
	width: 70%;
}

.m-rbox {
	width: 29%;
	position: relative;
}

.ct_box_three {
	width: 100%;
	height: auto;
	padding: 15px 0;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.ct_three_box {
	width: 28%;
	padding: 10px 2%;
	height: auto;
	margin-bottom: 20px;
	border-radius: 5px;
	box-shadow: 0 3px 50px 0 rgba(46, 44, 81, .1), 0 0 3px 0 rgba(47, 56, 85, .05);
}

.ct_three_box img {
	width: 100%;
	height: 200px;
	display: block;
	border-radius: 4px;
}

.ct-text_three {
	width: 100%;
	height: auto;
	padding: 10px 0;
	line-height: 1.5;
}

.ct-text_three p:nth-of-type(1) {
	font-size: 17px;
	font-weight: 600;
	text-transform: capitalize;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.ct-text_three p:nth-of-type(2) {
	font-size: 13px;
	font-weight: 600;
	color: #333;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ct_box_four {
	width: 90%;
	height: auto;
	padding: 15px 0;
	margin: 0 auto;
	position: sticky;
	top: 10px;
	bottom: auto;
}

.ct_four_box {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	border-bottom: 1px solid gainsboro;
	padding: 10px 0;
}

.ct_four_box img {
	width: 33%;
	height: 90px;
	border-radius: 10px;
}

.ct-text_four {
	width: 60%;
	height: auto;
	line-height: 1.5;
}

.ct-text_four p:nth-of-type(1) {
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
}

.ct-text_four p:nth-of-type(2) {
	font-size: 15px;
	color: #000;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 10px;
}

.ct-text_four p:nth-of-type(3) {
	font-size: 13px;
}

@media (max-width: 760px) {
	.content-box {
		width: 100%;
		height: auto;
		padding: 10px 0;
	}

	.caption_text {
		width: 95%;
		height: auto;
		margin: 0 auto;
	}

	.mt-box {
		width: auto;
		padding: 5px 10px;
		font-size: 20px;
		color: #000;
		text-align: center;
		display: inline-block;
		font-weight: 600;
		text-transform: capitalize;
	}

	.caption_text span {
		margin-left: 5px;
	}

	.ct_one_box {
		width: 80%;
		margin: 0 auto 20px;
	}

	.ct_box_two {
		width: 95%;
		height: auto;
		margin: 0 auto;
		padding: 15px 0;
	}

	.ct_two_box {
		width: 100%;
		display: flex;
		justify-content: space-between;
		margin-bottom: 20px;
	}

	.ct_two_box img {
		width: 38%;
		height: 110px;
		display: block;
	}

	.ct-text_tow {
		width: 55%;
		height: auto;
	}

	.ct-text_tow p {
		line-height: 1.5;
	}

	.ct-text_tow p:nth-of-type(1) {
		font-size: 12px;
		text-transform: uppercase;
	}

	.ct-text_tow p:nth-of-type(2) {
		font-size: 15px;
		font-weight: 600;
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		margin-bottom: 10px;
	}

	.bor {
		width: 30%;
		height: 2px;
		background-color: #4e50da;
	}

	.ct_box_three {
		width: 96%;
	}

	.ct_three_box {
		width: 44%;
		margin: 0 5px 20px 0;
	}

	.ct_three_box img {
		width: 100%;
		height: 90px;
	}

	.ct-text_three p:nth-of-type(1) {
		font-size: 15px;
	}

	.ct-text_three p:nth-of-type(2) {
		font-size: 13px;
		font-weight: 400;
	}

	.m-inner-box {
		flex-wrap: wrap;
	}

	.m-lbox,
	.m-rbox {
		width: 100%;
	}
}
