@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", sans-serif;
	min-height: 100vh;
	overflow-x: hidden;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

.container {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
}

.box1 {
	background-image: linear-gradient(to left top, #38d675, #36cd70, #33c66a, #31be65, #2fb85f, #2cb05a, #2aa855, #279f4f, #249248, #218441, #1d7039, #1a5c32);
	background-size: cover;


	clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
}

#arrow1, #arrow2, #arrow3 {
	position: absolute;
    z-index: 10;
    max-width: 150px;
	transform: rotate(40deg);
	left: -100px;
}
#arrow2, #arrow3 {
	left: -170px;
}

.box1 .container {
	width: 100%;
	padding: 60px 110px 120px;
	display: flex;
	gap: 36px;
}

.logo-img {
	width: 50px;
	position: relative;
	z-index: 2;
	display: block;
}

.logo-mark {
	position: relative;
	display: inline-block;
}

.logo-ellipse {
	position: absolute;
	left: 50%;
	bottom: -5px;
	width: 52px;
	height: 14px;
	background: #fff;
	transform: translateX(-50%);
	border-radius: 50%;
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.18);
	z-index: 1;
}

.box1-left {
	width: 55%;
}
.box1-right {
	width: calc(45% - 36px);
	margin-top: 60px;
}
.box1-left .logo {
	color: #fed881;
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 19.8px;
	letter-spacing: 0.54px;
	text-transform: uppercase;
	/* margin-bottom: 28px; */
}
.box1-left .heading {
	color: #ffffff;

	font-family: Inter;
	font-size: 45px;
	font-style: normal;
	font-weight: 800;
	line-height: 60px;
	letter-spacing: -1.4px;
	margin-bottom: 32px;
}
.box1-left .heading span {
	color: #f9ff00;
}
.box1-left .desc {
	color: #fff;
	font-family: Inter;
	font-size: 21.75px;
	font-style: normal;
	font-weight: 400;
	line-height: 36px;
	max-width: 455px;
}
.box1-right {
	background: #1a5c32;
	
	background-size: cover;
	padding: 21px 33px 34px;
	text-align: center;
	border-radius: 30px;
}
.box-form h3 {
	color: #fff;
	text-align: center;
	font-family: Inter;
	font-size: 25px;
	font-style: normal;
	font-weight: 800;
	line-height: normal;
	margin-bottom: 19px;
}
form {
	text-align: left;
}
.input-group label {
	display: block;
	color: #fff;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-align: left;
	margin-bottom: 9px;
}
.input-group select {
	width: 100%;
	padding: 6px 14px;
	border-radius: 100px;
	background: rgba(0, 0, 0, 0.1);
	color: #fff;
	font-family: Inter;
	font-size: 17px;
	font-style: normal;
	font-weight: 200;
	line-height: normal;
	height: 38px;
	border: none;
	outline: none;
}
.input-group select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.input-group select {
	background-image: url("../images/box1/arrow.svg");
	background-repeat: no-repeat;
	background-position: right 25px center;
	padding-right: 20px;
}
.input-group option {
	padding: 10px 15px;
	background-color: #fff;
	color: #333;
	cursor: pointer;
}
form .input-group:first-child {
	margin-bottom: 30px;
}
.btn {
	border-radius: 14px;
	background: #27ae60;
	color: #fff;
	font-family: Inter;
	font-size: 17px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	padding: 14px 55px;
	border: none;
	outline: none;
	margin: 0 auto;
	filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
	cursor: pointer;
	display: inline-block;
	margin: 0 auto;
}
.btn:hover {
	background: #229954;
	transition: all 0.2s linear;
}

.checkbox {
	margin-top: 19px;
	margin-bottom: 26px;
}
.checkbox-style {
	display: inline-flex;
	cursor: pointer;
}
.checkbox-label {
	cursor: pointer;
	color: #fff;
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 200;
	line-height: normal;
	margin-top: -3px;
}
.checkbox-style input {
	display: none;
}
.checkbox-box {
	width: 100%;
	height: 15px;
	max-width: 15px;
	margin-right: 9px;
	border: 1px solid #ccc;
	border-radius: 2px;
	color: transparent;
	transition: all 0.2s linear;
	position: relative;
}
.checkbox-box svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.checkbox-input:checked + .checkbox-box {
	background-color: #27ae60;
	border-color: #27ae60;
	color: white;
}

.socials {
	display: flex;
	gap: 20px;
}

@media (max-width: 1024px) {
	.box1 .container {
		width: 100%;
		padding: 60px 50px 120px;
		display: flex;
		gap: 36px;
	}
	.box1-left .heading {
		font-size: 36px;
		line-height: 50px;
		letter-spacing: -1.4px;
		margin-bottom: 30px;
	}
	.box1-left {
		width: 45%;
	}
	.box1-right {
		width: 55%;
		margin-top: 60px;
	}
}
@media (max-width: 768px) {
	.box1 {
		flex-direction: column;
		clip-path: polygon(0 0, 100% 0, 100% 95%, 50% 100%, 0 95%);
	}
	.box1-left {
		width: 100%;
	}
	.box1-right {
		width: 100%;
		margin-top: 0px;
	}
}
@media (max-width: 600px) {
	.box1 .container {
		width: 100%;
		padding: 25px 28px 60px;
		display: flex;
		gap: 36px;
		flex-direction: column;
	}
	.wrapper {
		padding: 0px 0px;
	}
	.box1-left {
		width: 100%;
	}
	.box1-right {
		width: 100%;
		margin-top: 0px;
	}
	.box1-left .logo {
		font-size: 12px;
		line-height: 19.8px;
		margin-bottom: 8px;
	}
	.box1-left .heading {
		font-size: 22px;
		line-height: 29.827px;
		letter-spacing: -0.696px;
		margin-bottom: 10px;
	}
	.box1-left .desc {
		font-size: 12px;
		line-height: 18px;
	}
	.box-form h2 {
		font-size: 18px;
		margin-bottom: 12px;
	}
	.input-group label {
		font-size: 14px;
		margin-bottom: 9px;
	}
	.box1-right {
		background: #1a5c32;
		background-size: cover;
		padding: 21px 20px 34px;
		text-align: center;
		border-radius: 30px;
	}
	form .input-group:first-child {
		margin-bottom: 24px;
	}
}

/* ===============box2================== */
.box2 {
	max-width: 1300px;
	margin: 0 auto;
	padding-top: 43px;
	display: flex;
	align-items: end;
}
.box2-right {
	width: 696px;
	position: relative;
}
.box2-left {
	transform: translateX(77px);
	z-index: 0;
}
.box2-right h2 {
	color: #27ae60;
	text-align: center;
	font-family: Inter;
	font-size: 46.68px;
	font-style: normal;
	font-weight: 800;
	line-height: 60px; /* 128.536% */
	letter-spacing: -1.4px;
	margin-bottom: 32px;
}
.box2-right .list {
	display: flex;
	flex-wrap: wrap;
	gap: 33px 25px;
}
.box2-right .list .item {
	width: calc(50% - 16.5px);
	border-radius: 18.926px;
	border: 0.946px solid #a9dfbf;
	background: #eafaf1;
	box-shadow: 4.731px 4.731px 4.447px 0 rgba(211, 211, 211, 0.2);
	display: flex;
	padding: 28px 26px 14px;
	gap: 7px;
}
.box2-right .list .item img {
	width: 40px;
	height: 40px;
}
.box2-right .list .item .text h3 {
	color: #2b2b2b;
	font-family: Inter;
	font-size: 18.926px;
	font-style: normal;
	font-weight: 700;
	line-height: 22.711px; /* 120% */
	letter-spacing: -0.53px;
	margin-top: 7px;
}
.box2-right .list .item .text p {
	color: #2b2b2b;
	font-family: Inter;
	font-size: 16.087px;
	font-style: normal;
	font-weight: 400;
	line-height: 23.657px; /* 147.059% */
}

@media (max-width: 1024px) {
	.box2 {
		flex-direction: column;
		padding: 0 28px;
		margin-top: -40px;
	}
	.box2-left {
		transform: initial;
		z-index: 0;
	}
	.box2-right {
		width: 100%;
		position: relative;
		filter: drop-shadow(0 0 23.4px rgba(174, 174, 174, 0.4));
		background: #fff;
		padding: 20px 27px;
		border-radius: 28px;
	}
	.box2-left {
		text-align: center;
		width: 100%;
		margin-bottom: -10px;
		transform: translateX(0px);
	}
}
@media (max-width: 600px) {
	.box2-right .list {
		display: flex;
		flex-direction: column;
		gap: 15px;
	}
	.box2-right .list .item {
		width: 100%;
		border-radius: 18.926px;
		border: 0.946px solid #a9dfbf;
		background: #eafaf1;
		box-shadow: 4.731px 4.731px 4.447px 0 rgba(211, 211, 211, 0.2);
		display: flex;
		padding: 9px 23px 16px;
		gap: 7px;
	}
	.box2-right h2 {
		font-size: 25px;
		line-height: 30px;
		letter-spacing: -0.7px;
		margin-bottom: 19px;
	}
	.box2-right .list .item .text h3 {
		font-size: 15px;
		line-height: 22.711px;
		letter-spacing: -0.53px;
		margin-top: 0px;
	}
	.box2-right .list .item .text p {
		font-size: 12px;
		line-height: 18px;
	}
}

/* ===============box3================== */

.calculate {
	background: #1a5c32;
	padding: 60px 0;
	margin-bottom: 50px;
}
.calculate-container {
	max-width: 1143px;
	margin: 0 auto;
}
.calculate-container h2 {
	color: #FFF !important;
	text-align: center;
	font-family: Inter;
	font-size: 45.203px;
	font-style: normal;
	font-weight: 600;
	line-height: 40.683px;
	margin-bottom: 10px;
}
.calculate-container p {
	color: #FFF;
	text-align: center;
	font-family: Inter;
	font-size: 20px;
	font-style: italic;
	font-weight: 300;
	line-height: 30px; /* 150% */
	margin-bottom: 65px;
}
.calculateCaculate {
	display: flex;
	gap: 66px;
}
.box-calculate {
	width: 40%;
}
.box-calculate-result {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 60%;
	box-shadow: 8px 7px 33.2px rgba(0, 0, 0, 0.45);
	padding: 0 52px;
	background: #FFF;
}
.box-calculate-item {
	margin-bottom: 60px;
	position: relative;
}
.box-calculate-item label {
	display: block;
	color: #FFF;
	font-family: Inter;
	font-size: 29px;
	font-style: normal;
	font-weight: 300;
	line-height: 30px;
	margin-bottom: 5px;
	position: absolute;
	top: -35px;
}
.box-calculate-item p {
	position: absolute;
	right: 0;
	top: 5px;
	right: 15px;
	opacity: 0.5;
}
.box-calculate-item input {
	width: 100%;
	padding: 10px;
	background: #062b14;
	color: #FFF;

	font-family: Inter;
	font-size: 21.301px;
	font-style: normal;
	font-weight: 300;
	line-height: 22.035px;
	border: none;
	outline: none;
}
.btn-calculate {
	display: block;
	border: none;
	outline: none;
	margin: -30px auto 0;
	cursor: pointer;
}
.box-calculate-result h3 {
	color: #040404;
	font-family: Inter;
	font-size: 23.227px;
	font-style: normal;
	font-weight: 500;
	line-height: 24.028px;
	margin-bottom: 10px;
}
.box-calculate-result-item span {
	color: #27ae60;
	font-family: Inter;
	font-size: 89.081px;
	font-style: normal;
	font-weight: 600;
	line-height: 95px;
	display: inline-block;
	margin-bottom: 20px;
}
.box-calculate-result-interest {
	padding-bottom: 0px;
	border-bottom: 1px solid #040404;
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.box-calculate-result-interest span:first-child {
	color: #040404;
	font-family: Inter;
	font-size: 23.227px;
	font-style: normal;
	font-weight: 300;
	line-height: 54px;
}
.box-calculate-result-interest span:last-child {
	color: #040404;
	font-family: Inter;
	font-size: 23.227px;
	font-style: normal;
	font-weight: 500;
	line-height: 54px;
}
.box-calculate-result-total {
	padding-bottom: 0px;
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.box-calculate-result-total span:first-child {
	color: #040404;
	font-family: Inter;
	font-size: 23.227px;
	font-style: normal;
	font-weight: 300;
	line-height: 54px;
}
.box-calculate-result-total span:last-child {
	color: #040404;
	font-family: Inter;
	font-size: 23.227px;
	font-style: normal;
	font-weight: 500;
	line-height: 54px;
}

@media (max-width: 1200px) {
	.calculate-container {
		padding: 0 16px;
	}
	.box-calculate-item label {
		font-size: 22px;
	}
}

@media (max-width: 768px) {
	.calculate {
		padding: 30px 16px;
	}
	.calculateCaculate {
		display: flex;
		flex-direction: column;
		gap: 66px;
	}
	.box-calculate {
		width: 100%;
	}
	.box-calculate-result {
		width: 100%;
		padding: 20px 50px;
	}
}

@media (max-width: 500px) {
	.calculate-container h2 {
		font-size: 35px;
		line-height: 35px;
	}
	.calculate-container p {
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 50px;
	}
	.box-calculate-item label {
		font-size: 19px;
		line-height: 30px;
		margin-bottom: 5px;
		top: -34px;
	}
	.box-calculate-item {
		margin-bottom: 45px;
		position: relative;
	}
	.calculateCaculate {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}
	.box-calculate-result h3 {
		font-size: 18.227px;
		line-height: 24.028px;
		margin-bottom: 10px;
	}
	.box-calculate-result-item span {
		font-size: 70px;
		line-height: 80px;
		margin-bottom: 10px;
	}
	.box-calculate-result {
		width: 100%;
		padding: 20px 30px;
	}
	.box-calculate-result-interest span:first-child {
		font-size: 18.227px;
		line-height: 54px;
	}
	.box-calculate-result-total span:first-child {
		font-size: 18.227px;
		line-height: 54px;
	}
}

.box3 {
	padding-top: 110px;
}
.box3 h2 {
	color: #27ae60;
	text-align: center;
	font-family: Inter;
	font-size: 46.094px;
	font-style: normal;
	font-weight: 800;
	line-height: 60px;
	letter-spacing: -1.4px;
	margin-bottom: 27px;
}
.box3-list {
	display: flex;
	flex-wrap: wrap;
	max-width: 1143px;
	margin: 0 auto 110px;
}
.box3-item {
	width: 33%;
	text-align: center;
}
.box3-item svg {
	margin-bottom: 15px;
}
.box3-item h3 {
	color: #52d68a;
	text-align: center;
	font-family: Inter;
	font-size: 18.281px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px; /* 131.282% */
	letter-spacing: -0.56px;
	margin-bottom: 4px;
}
.box3-item p {
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 14.75px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.box-start {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.box-start-title {
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 46.094px;
	font-style: normal;
	font-weight: 800;
	line-height: 60px; /* 130.169% */
	letter-spacing: -1.4px;
	margin-bottom: 19px;
}
.box-start-desc {
	color: #2b2b2b;
	text-align: center;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 48px;
}

.d-none {
	display: none;
}

@media (max-width: 600px) {
	.box3 {
		max-width: 1143px;
		margin: 0 auto;
		padding-top: 35px;
	}
	.box3 h2 {
		color: #27ae60;
		text-align: center;
		font-family: Inter;
		font-size: 23px;
		font-style: normal;
		font-weight: 800;
		line-height: 33.294px; /* 144.757% */
		letter-spacing: -0.777px;
		margin-bottom: 19px;
	}
	.box3-list {
		display: flex;
		flex-direction: column;
		gap: 20px;
		margin-bottom: 35px;
	}
	.box3-item {
		width: 100%;
		max-width: 80%;
		margin: 0 auto;
		text-align: left;

		display: flex;
		align-items: flex-start;
		gap: 20px;
	}
	.box3-item h3,
	.box3-item p {
		text-align: left;
	}
}

/* ============box4============== */

.box4 {
	padding-top: 110px;
}
.box4 h2 {
	color: #27ae60;
	text-align: center;
	font-family: Inter;
	font-size: 46.68px;
	font-style: normal;
	font-weight: 800;
	line-height: 60px; /* 128.536% */
	letter-spacing: -1.4px;
	margin-bottom: 13px;
}
.box4-desc {
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px; /* 120% */
	margin-bottom: 47px;
}
#wrapper {
	margin: 0 auto;
}

.slides-wrapper {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	overflow: hidden; /* Ẩn phần tràn ra ngoài */
	border-radius: 12px; /* Tùy chọn: bo góc cho đẹp */
}

.slides {
	display: flex;
	gap: 16px;
	animation: smoothSlideScroll 20s linear infinite;
	width: max-content; /* Chiều rộng tự động theo nội dung */

}

.slide {
	position: relative;

	flex-shrink: 0;
	width: 500px;
	height: 500px;
	border-radius: 8px;
	overflow: hidden;

	.content {
		position: absolute;
		top: 30%;
		left: 50%;
		transform: translateX(-50%);

		width: 80%;

		h3 {
			font-size: 27px;
			margin-bottom: 10px;
		}
	}


}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

/* Hover effect for individual slides */
.slide:hover img {
	transform: scale(1.05);
}

/* Smooth scroll animation - tính toán chính xác */
@keyframes smoothSlideScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-500px * 5 - 16px * 4)); /* Width * số slides + gaps */
	}
}

/* Pause animation on hover */
.slides:hover {
	animation-play-state: paused;
}

/* Fade edges cho hiệu ứng đẹp */
.slides-wrapper::before,
.slides-wrapper::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 50px;
	z-index: 2;
	pointer-events: none;
}

.slides-wrapper::before {
	left: 0;
	background: linear-gradient(to right, rgba(245, 245, 245, 1), rgba(245, 245, 245, 0));
}

.slides-wrapper::after {
	right: 0;
	background: linear-gradient(to left, rgba(245, 245, 245, 1), rgba(245, 245, 245, 0));
}

/* Mobile responsive */
@media (max-width: 768px) {
	.slides-wrapper {
		margin: 0 16px;
		max-width: calc(100vw - 32px);
	}

	.slides {
		animation-duration: 18s;
		gap: 12px;
	}

	.slide {
		width: 239px;
		height: 224px;
	}

	@keyframes smoothSlideScroll {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(calc(-239px * 5 - 12px * 4));
		}
	}

	.slides-wrapper::before,
	.slides-wrapper::after {
		width: 30px;
	}

	
	.slide {
		.content {
			position: absolute;
			top: 20%;
			left: 50%;
			transform: translateX(-50%);

			width: 80%;

			h3 {
				font-size: 14px;
				margin-bottom: 5px;
			}
			p {
				font-size: 12px;
			}
		}
	}

}

@media (max-width: 480px) {
	.slides {
		animation-duration: 16s;
		gap: 10px;
	}
	.box4 {
		padding-top: 60px;
	}
	.box4 h2 {
		color: #27ae60;
		text-align: center;
		font-family: Inter;
		font-size: 30px;
		font-style: normal;
		font-weight: 800;
		line-height: 35px;
		letter-spacing: -0.4px;
		max-width: 90%;
		margin: 0 auto 13px;
	}
	.box4-desc {
		color: #000;
		text-align: center;
		font-family: Inter;
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: 20px; /* 120% */
		max-width: 90%;
		margin: 0 auto 20px;
	}
	.slide {
		width: 239px;
		height: 224px;
	}

	@keyframes smoothSlideScroll {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(calc(-239px * 5 - 10px * 4));
		}
	}

	.slides-wrapper::before,
	.slides-wrapper::after {
		width: 20px;
	}
}

/* Alternative: Nếu bạn muốn slide có kích thước khác nhau */
.slide.large {
	width: 400px;
	height: 250px;
}

.slide.small {
	width: 200px;
	height: 150px;
}

/* ============box5================== */

.box5 {
	max-width: 1220px;
	margin: 110px auto 0px;
	border-radius: 30px;
	background: #f4f4f4;
	padding: 42px 128px 40px 84px;
}
.box5 h2 {
	color: #2b2b2b;
	text-align: center;
	font-family: Inter;
	font-size: 46.484px;
	font-style: normal;
	font-weight: 800;
	line-height: 60px;
	letter-spacing: -1.4px;
}
.box5-desc {
	color: #000;
	font-family: Inter;
	font-size: 14.88px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 161.29% */
	margin-bottom: 43px;
	text-align: center;
}
.box5-content {
	display: flex;
	align-items: center;
	gap: 27px;
	margin-bottom: 38px;
}
.box5-left {
	width: 40%;
}
.box5-right {
	width: 60%;
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.box5-item {
	display: flex;
	gap: 17px;
	border-radius: 10px;
	background: #fff;
	border-left: 8px solid #a9dfbf;
	padding: 26px 35px 29px;
}
.box5-item img {
	width: 40px;
	height: 40px;
}
.box5-item h3 {
	color: #2b2b2b;
	font-family: Inter;
	font-size: 27.305px;
	font-style: normal;
	font-weight: 700;
	line-height: 36px; /* 131.845% */
	letter-spacing: -0.84px;
	margin-bottom: 2px;
}
.box5-item p {
	color: #2b2b2b;
	font-family: Inter;
	font-size: 14.875px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}
.box5-text {
	color: #000;
	font-family: Inter;
	font-size: 14.875px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 161.345% */
	text-align: center;
}

@media (max-width: 768px) {
	.box5-left {
		display: none;
	}
	.box5-item {
		display: flex;
		gap: 17px;
		border-radius: 10px;
		background: #fff;
		border-left: 8px solid #a9dfbf;
		padding: 26px 35px 29px;
	}
	.box5-right {
		width: 100%;
	}
	.box5 {
		max-width: 1220px;
		margin: 110px auto 0px;
		border-radius: 0px;
		background: #f4f4f4;
		padding: 42px 84px 40px 84px;
	}
}

@media (max-width: 600px) {
	.box5 {
		padding: 8px 24px 14px;
		margin-top: 35px;
	}
	.box-title {
		display: flex;
		align-items: center;
	}
	.box-title img {
		width: 100%;
		height: auto;
		max-width: 130px;
		gap: 10px;
		margin-bottom: 14px;
	}
	.box5 h2 {
		text-align: left;
		font-size: 23px;
		line-height: 30px;
		letter-spacing: -0.4px;
	}
	.box5-desc {
		margin-bottom: 15px;
	}
	.box5-item {
		display: flex;
		gap: 17px;
		border-radius: 10px;
		background: #fff;
		border-left: 6px solid #a9dfbf;
		padding: 15px 20px 15px;
	}
	.box5-item h3 {
		font-size: 20px;
		line-height: 26px;
		letter-spacing: -0.84px;
		margin-bottom: 2px;
	}
	.box5-item p {
		font-size: 14px;
		line-height: 18px;
	}
	.box5-text {
		font-size: 14px;
		line-height: 20px;
	}
}

/* ===============box6================ */
.box6 {
	padding-top: 110px;
}
.box6-heading {
	color: #2b2b2b;
	text-align: center;
	font-family: Inter;
	font-size: 46.484px;
	font-style: normal;
	font-weight: 800;
	line-height: 60px; /* 129.076% */
	letter-spacing: -1.4px;
	margin-bottom: 29px;
}
.box6-desc {
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 400;
	line-height: 40px; /* 166.667% */
	margin: 0 auto 136px;
	max-width: 1079px;
}
.box6-content {
	background: url("../images/box6/bg.webp") no-repeat center center;
	background-size: cover;
	padding: 84px 183px 75px;
}
.box6-content h3 {
	color: #2b2b2b;
	text-align: center;
	font-family: Inter;
	font-size: 46.484px;
	font-style: normal;
	font-weight: 800;
	line-height: 60px; /* 129.076% */
	letter-spacing: -1.4px;
	margin-bottom: 33px;
}

.box6-content .row {
	display: flex;
	max-width: 1200px;
	margin: 0 auto;
	gap: 20px;
}

.box6-content .left,
.box6-content .right {
	flex: 1;
	border-radius: 20px;
	overflow: hidden;
	
	background-color: #fff;

	h4 {
		padding: 15px;

		background-color: #52d68a;
		color: #fff;
		text-align: center;
	}

	.list {
		padding: 15px 20px;
	}

	.item {
		display: flex;
		gap: 15px;
		
		padding: 10px 0;
		border-bottom: 1px solid #00000027;
	
		.content {
			flex: 1;
		}

		h5 {
			font-size: 18px;
			margin-bottom: 5px;
		}
		p {
			font-size: 16px;
		}

	}
	.item:last-child {
		border-bottom: 0;
	}
}

@media (max-width: 1024px) {
	.box6-content {
		background: url(../images/box6/bg.webp) no-repeat center center;
		background-size: cover;
		padding: 70px 83px 50px;
	}
}

@media (max-width: 768px) {
	.box6 {
		padding-top: 35px;
	}
	.box6-content {
		background: url(../images/box6/bg.webp) no-repeat center center;
		background-size: cover;
		padding: 70px 30px 50px;
	}
	.box6-content h3 {
		font-size: 30px;
		font-style: normal;
		font-weight: 800;
		line-height: 40px;
		letter-spacing: -0.4px;
		margin-bottom: 33px;
	}
	.box6-desc {
		font-size: 24px;
		line-height: 30px;
		margin: 0 auto 50px;
		max-width: 1079px;
	}
	.box6-heading {
		color: #2b2b2b;
		text-align: center;
		font-family: Inter;
		font-size: 30px;
		font-style: normal;
		font-weight: 800;
		line-height: 36px;
		letter-spacing: -0.4px;
		margin-bottom: 20px;
	}
	#arrow1, #arrow2, #arrow3 {
		max-width: 90px;
		bottom: calc(-100% - 20px);
		left: -50px;
	}
}

@media (max-width: 600px) {
	.box6-content {
		background: url(../images/box6/bg.webp) no-repeat center center;
		background-size: cover;
		padding: 70px 25px 50px;
	}
	.box6-heading {
		color: #2b2b2b;
		text-align: center;
		font-family: Inter;
		font-size: 30px;
		font-style: normal;
		font-weight: 800;
		line-height: 36px;
		letter-spacing: -0.4px;
		margin-bottom: 20px;
	}
	.box6-desc {
		font-size: 16px;
		line-height: 25px;
		margin: 0 auto 30px;
		max-width: 350px;
	}
	.box6-content img {
		width: 100%;
	}
}

/* ================box7=================== */
.box7 {
	padding-top: 110px;
}
.main-title {
	text-align: center;
	margin-bottom: 20px;
	font-size: 2.5rem;
	font-weight: 700;
}

.main-title .blue-text {
	color: #27ae60;
}

.main-title .black-text {
	color: #333;
}

.subtitle {
	text-align: center;
	font-size: 1.1rem;
	color: #666;
	margin-bottom: 40px;
	font-weight: 400;
}

.content-wrapper {
	display: flex;
	align-items: center;
	gap: 60px;
	max-width: 1000px;
	margin: 0 auto;
}

.image-section {
	flex: 0 0 300px;
}

.woman-image {
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

.woman-placeholder {
	width: 512px;
	height: 512px;
	background: url("../images/box7/repayment-terms.webp") center/contain no-repeat;
}

.features-section {
	flex: 1;
}

.feature-card {
	background: white;
	border: 2px solid #27ae60;
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
	gap: 15px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
	width: 24px;
	height: 24px;
	color: #27ae60;
	flex-shrink: 0;
	margin-top: 2px;
}

.feature-content h3 {
	font-size: 1.1rem;
	font-weight: bold;
	color: #333;
	margin-bottom: 5px;
}

.feature-content p {
	font-size: 0.95rem;
	color: #666;
	line-height: 1.5;
}

/* Mobile Styles */
@media (max-width: 768px) {
	.box2 {
		padding: 0;
	}

	.main-title {
		font-size: 1.8rem;
		margin-bottom: 15px;
	}

	
	.subtitle {
		font-size: 1rem;
		margin-bottom: 30px;
		padding: 0 10px;
	}

	.content-wrapper {
		flex-direction: column;
		gap: 30px;
		text-align: center;
	}

	.image-section {
		flex: none;
		align-self: center;
	}

	.woman-image {
		width: 100%;
		max-width: 92px;
		height: 90px;
	}

	.woman-placeholder {
		width: 100%;
		height: 112px;
	}

	.features-section {
		width: 100%;
	}

	.feature-card {
		padding: 18px;
		margin-bottom: 15px;
	}
	.feature-content {
		text-align: left;
	}
	.feature-content h3 {
		font-size: 1rem;
	}

	.feature-content p {
		font-size: 0.9rem;
	}
	.box7 {
		padding: 35px 28px 0px;
	}
}

@media (max-width: 480px) {
	.mb {
		display: block;
	}

	.desk {
		display: none;
	}

	.main-title {
		font-size: 1.5rem;
	}

	.feature-card {
		padding: 15px;
		gap: 12px;
	}

	.feature-icon {
		width: 20px;
		height: 20px;
	}
	.image-section.mb {
		display: flex;
		gap: 10px;
	}
	.main-title {
		font-size: 22px;
		line-height: 27.24px;
		text-align: left;
		margin-bottom: 5px;
	}
	.subtitle {
		font-size: 14px;
		text-align: left;
		padding: 0;
	}
}

/* =================box8=================== */
.box8 {
	padding-top: 60px;
}

.box8-content {
	max-width: 1220px;
	margin: 50px auto 0;
	text-align: center;
}
.box8-heading {
	color: #2b2b2b;
	font-family: Inter;
	font-size: 45.898px;
	font-style: normal;
	font-weight: 800;
	line-height: 60px;
	letter-spacing: -1.4px;
	margin-bottom: 10px;
}
.box8-heading span {
	color: #52d68a;
}
.box8-desc {
	color: #000;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	margin-bottom: 10px;
}
table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 19px; /* Khoảng cách giữa các hàng */
	font-family: Inter, sans-serif;
	margin: 0px 0 40px; /* Khoảng cách trên và dưới bảng */
}
thead {
	border-radius: 20px;
}
thead tr th:first-child {
	border-radius: 20px 0px 0px 20px;
	padding-left: 50px;
}
thead tr th:last-child {
	border-radius: 0px 20px 20px 0px;
	padding-left: 50px;
}
tbody tr td:first-child {
	border-radius: 20px 0px 0px 20px;
	padding-left: 50px;
}
tbody tr td:last-child {
	border-radius: 0px 20px 20px 0px;
	padding-left: 50px;
}
thead tr th {
	background: #eafaf1;
	color: #000;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 25px;
}
th,
td {
	padding: 14px 12px;
	text-align: left;
	background: #f4f4f4;
	width: 33.33%;
	color: #000;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 25px;
}

th {
	font-weight: bold;
}

td:first-child {
	font-weight: bold;
	color: #000;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 25px; /* 405% */
}

tbody tr {
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); /* tạo hiệu ứng nổi nhẹ */
	border-radius: 20px;
}

@media (max-width: 600px) {
	.box8 {
		padding: 35px 15px 0;
	}
	.box8-content {
		max-width: 1220px;
		margin: 35px auto 0;
		text-align: center;
	}
	.box8-desc {
		color: #000;
		font-family: Inter;
		font-size: 15px;
		font-style: normal;
		font-weight: 400;
		line-height: 20px;
		margin-bottom: 10px;
	}
	table {
		width: 100%;
		border-collapse: separate;
		border-spacing: 0 12px;
		margin: 0;
	}
	thead tr th:first-child {
		border-radius: 0;
		padding-left: 20px;
	}
	thead tr th:last-child {
		border-radius: 0;
		padding-left: 10px;
	}
	tbody tr td:first-child {
		border-radius: 0;
		padding-left: 20px;
	}
	tbody tr td:last-child {
		border-radius: 0;
		padding-left: 10px;
	}
	thead tr th {
		font-size: 14px;
		line-height: 18px;
	}
	td:first-child {
		font-size: 14px;
		line-height: 20px;
	}
	tbody tr td {
		font-size: 14px;
		line-height: 18px;
	}
	.box8-heading {
		font-size: 25px;
		line-height: 35px;
		letter-spacing: -0.4px;
		margin-bottom: 0px;
	}
	th,
	td {
		padding: 10px 10px;
	}
}

/* ===========box9============ */
.box9 {
	border-radius: 20px;
	background: #f0faf5;
	padding: 38px 0 44px;
	overflow-x: hidden;
}
.box9 h2 {
	color: #212121;
	font-family: Inter;
	font-size: 46.094px;
	font-style: normal;
	font-weight: 600;
	line-height: 60px;
	letter-spacing: -1.4px;
	max-width: 1051px;
	margin: 0 auto 14px;
	text-align: center;
}
.box9 h2 span {
	color: #27ae60;
	font-weight: 800;
}
.box9-text1 {
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 60px; /* 250% */
	letter-spacing: -1.4px;
	margin-bottom: 24px;
}
.box9-reviews {
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
	gap: 24px;
	margin-bottom: 12px;
}
.review {
	padding: 15px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 1px 0 0 rgba(182, 196, 210, 0.4);
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 25%;
}
.review h3 {
	color: #1f2936;
	font-family: Inter;
	font-size: 13.672px;
	font-style: normal;
	font-weight: 700;
	line-height: 16px;
	height: 30px;
}
.review p {
	color: #191919;
	font-family: Inter;
	font-size: 12.391px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px; /* 129.13% */
}
.review span {
	color: rgba(0, 0, 0, 0.6);
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 700;
	line-height: 16px; /* 133.333% */
}
.box9-text2 {
	text-align: center;
	color: #191919;
	font-family: Inter;
	font-size: 12.492px;
	font-style: normal;
	font-weight: 400;
	line-height: 16px;
	margin-bottom: 42px;
}
.text3 {
	text-align: center;
	margin-bottom: 9px;
}
.text3 h4 {
	color: #212121;
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 9px;
}
.text3 p {
	color: #212121;
	text-align: center;
	font-family: Inter;
	font-size: 12.09px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.reviews-wrapper {
	width: 100%;
	max-width: 1080px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.box9-reviews {
	display: flex;
	gap: 24px;
	animation: smoothScroll 25s linear infinite;
	width: max-content;
}

.review {
	padding: 15px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 1px 0 0 rgba(182, 196, 210, 0.4);
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 300px;
	min-width: 300px;
	flex-shrink: 0;
}

.review h3 {
	color: #1f2936;
	font-family: Inter, sans-serif;
	font-size: 13.672px;
	font-weight: 700;
	line-height: 16px;
	height: auto;
	min-height: 32px;
	margin: 0;
}

.review p {
	color: #191919;
	font-family: Inter, sans-serif;
	font-size: 12.391px;
	font-weight: 400;
	line-height: 16px;
	margin: 0;
}

.review span {
	color: rgba(0, 0, 0, 0.6);
	font-family: Inter, sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	margin: 0;
}

@keyframes smoothScroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-300px * 4 - 24px * 3));
	}
}

.box9-reviews:hover {
	animation-play-state: paused;
}

.reviews-wrapper::before,
.reviews-wrapper::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 40px;
	z-index: 2;
	pointer-events: none;
}

.reviews-wrapper::before {
	left: 0;
	background: linear-gradient(to right, rgba(245, 245, 245, 1), rgba(245, 245, 245, 0));
}

.reviews-wrapper::after {
	right: 0;
	background: linear-gradient(to left, rgba(245, 245, 245, 1), rgba(245, 245, 245, 0));
}

@media (max-width: 768px) {
	.reviews-wrapper {
		margin: 0 16px;
	}

	.box9-reviews {
		animation-duration: 20s;
		gap: 20px;
	}

	.review {
		width: 280px;
		min-width: 280px;
	}

	@keyframes smoothScroll {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(calc(-280px * 4 - 20px * 3));
		}
	}

	.reviews-wrapper::before,
	.reviews-wrapper::after {
		width: 20px;
	}

		
	.box6-content .row {
		flex-direction: column;
	}
}
@media (max-width: 600px) {
	.box9 {
		margin-top: 35px;
		border-radius: 0;
	}
	.box9 h2 {
		font-size: 25px;
		line-height: 35px;
		letter-spacing: -0.4px;
		max-width: 1051px;
		margin: 0 auto 10px;
		text-align: center;
		padding: 0 16px;
	}
	.box9-text1 {
		font-size: 16px;
		line-height: 25px;
		letter-spacing: -0.4px;
		margin-bottom: 24px;
	}
	.box9-text2 {
		font-size: 12.492px;
		line-height: 16px;
		margin-bottom: 16px;
	}
	.text3 {
		padding: 0 16px;
	}
}
@media (max-width: 480px) {
	.box9-reviews {
		animation-duration: 18s;
		gap: 16px;
	}

	.review {
		width: 260px;
		min-width: 260px;
		padding: 12px;
	}

	@keyframes smoothScroll {
		0% {
			transform: translateX(0);
		}
		100% {
			transform: translateX(calc(-260px * 4 - 16px * 3));
		}
	}
}

.vision-founder {
	padding: 110px 15px 0;
	max-width: 1220px;
	margin: 0 auto;
}

.vision-founder h2 {
    color: #212121;
    text-align: center;
    font-family: Inter;
    font-size: 45.898px;
    font-style: normal;
    font-weight: 800;
    line-height: 1.5rem;
    letter-spacing: -1.4px;
    margin-bottom: 70px;
}

.vision-founder-content {
	display: flex;
	gap: 70px;
	align-items: center;
}


.vision-founder-image {
	flex: 1;
}

.vision-founder-content .content {
	flex: 1;
}

.vision-founder-content p {
	font-weight: 400;
	font-size: 27px;
	line-height: 1.5;
	letter-spacing: -0.56px;
	vertical-align: middle;

	margin-bottom: 20px;
}

.vision-founder-content .signature {
	float: right;
	margin-right: 30px;
}

@media (max-width: 1024px) {
	.vision-founder-content {
		flex-direction: column;
	}
}

/* ===================box10================== */
.faq-section {
	max-width: 1220px;
	margin: 0 auto;
	padding: 110px 20px;
	font-family: Inter, sans-serif;
}

.faq-section h2 {
	color: #212121;
	text-align: center;
	font-family: Inter;
	font-size: 45.898px;
	font-style: normal;
	font-weight: 800;
	line-height: 60px; /* 130.723% */
	letter-spacing: -1.4px;
	margin-bottom: 40px;
}

.faq-container {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}

.faq-column {
	flex: 1 1 45%;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

details {
	border-bottom: 1px solid #ddd;
	padding-bottom: 12px;
	cursor: pointer;
}

summary {
	font-weight: 600;
	position: relative;
	padding: 20px 25px 20px 0px;
	list-style: none;
	color: #212121;
	font-family: Inter;
	font-size: 18.125px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px; /* 132.414% */
	letter-spacing: -0.56px;
}

summary::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-weight: bold;
	color: #00819d;
	text-align: center;
	font-family: Inter;
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 38.4px; /* 120% */
	letter-spacing: -0.56px;
}

details[open] summary::after {
	content: "–";
}

details p {
	color: #555;
	padding: 20px 50px 20px 0px;
	color: #212121;
	font-family: Inter;
	font-size: 14.875px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px; /* 161.345% */
}
@media (max-width: 768px) {
	.faq-section {
		max-width: 1220px;
		margin: 0 auto;
		padding: 35px 20px;
		font-family: Inter, sans-serif;
	}
	.faq-container {
		display: flex;
		flex-wrap: wrap;
		gap: 0px;
		flex-direction: column;
	}
	summary {
		font-weight: 600;
		position: relative;
		padding: 15px 25px 15px 0px;
		list-style: none;
	}
	details p {
		font-size: 14px;
		color: #555;
		padding: 15px 30px 15px 0px;
	}
	.faq-section h2 {
		font-size: 23.898px;
		line-height: 35px;
		letter-spacing: -0.4px;
		margin-bottom: 20px;
	}
}
/* ====================================== */
.cta-banner {
	position: relative;
	padding: 60px 15px;
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
}
.cta-banner::before {
	content: "";
	width: 100vw;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;

	background-image: linear-gradient(to left top, #38d675, #36cd70, #33c66a, #31be65, #2fb85f, #2cb05a, #2aa855, #279f4f, #249248, #218441, #1d7039, #1a5c32);
    background-size: cover;
}
.cta-banner .left {
	display: flex;
	flex-direction: column;
	gap: 15px;
	color: #fff;
}
.cta-banner h3 {
	font-family: Inter;
	font-weight: 500;
	font-style: Medium;
	font-size: 24px;
	line-height: 25px;
	letter-spacing: 0%;
	vertical-align: middle;

}
.cta-banner h2 {
	font-family: Inter;
	font-weight: 800;
	font-style: Extra Bold;
	font-size: 32px;
	line-height: 40px;
	letter-spacing: 0%;
	vertical-align: middle;

}
.cta-banner p {
	font-family: Inter;
	font-weight: 500;
	font-style: Medium;
	font-size: 20px;
	line-height: 25px;
	letter-spacing: 0%;
	vertical-align: middle;

}
/* ================Footer================= */
.footer {
	font-family: Inter, sans-serif;
	color: #333;
}
.footer::before {
	content: "";
	width: 100vw;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}

.footer-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 60px 15px 40px;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.footer-left p {
	margin: 6px 0;
	font-size: 14px;
	line-height: 1.4rem;
}
.footer-left {
	flex: 2;
	display: flex;
	gap: 30px;
	align-items: flex-start;
}
.footer-right {
	flex: 3;
}

.footer-logo {
	width: 90px;
	height: auto;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px 16px;
}

.footer-links a {
	color: #333;
	text-decoration: none;
	font-size: 14px;
}

.footer-links a:hover {
	text-decoration: underline;
}

.footer-middle {
	padding: 0 15px 20px;
	text-align: justify;
	font-family: Inter;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 26px; /* 173.333% */
	border-bottom: 1px solid #000;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 20px;
	font-family: Inter;
	font-size: 15px;
	font-style: normal;
	font-weight: 300;
	line-height: normal;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
}

@media (max-width: 600px) {
	.footer-top {
		padding: 40px 15px 40px;
		flex-direction: column;
		align-items: center;
		padding-bottom: 0;
	}
	.footer-links {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 12px 16px;
		text-align: left;
	}
	.footer-left,
	.footer-right {
		flex: none;
		width: 100%;
		text-align: left;
	}
	.footer-middle {
		padding: 20px 16px;
		font-size: 14px;
		line-height: 20px;
	}
	.footer-bottom {
		flex-direction: column;
		padding: 15px 20px;
		font-size: 14px;
	}
}

.onTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999;
}

.onTop.show {
  opacity: 1;
  pointer-events: auto;
}

.mb {
	display: none;
}
@media (max-width: 600px) {
	.mb {
		display: block;
	}
	.pc {
		display: none;
	}
	.box-start {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.box-start-title {
		color: #000;
		text-align: center;
		font-family: Inter;
		font-size: 30px;
		font-style: normal;
		font-weight: 800;
		line-height: 35px; /* 130.169% */
		letter-spacing: -1.4px;
		margin-bottom: 5px;
	}
	.box-start-desc {
		color: #2b2b2b;
		text-align: center;
		font-family: Inter;
		font-size: 15px;
		font-style: normal;
		font-weight: 400;
		line-height: 24px;
		margin-bottom: 18px;
	}

	.vision-founder-content {
		flex-direction: column;
		gap: 20px;
	}
	.vision-founder-content p {
		font-size: 16px;
	}

	.cta-banner {
		flex-direction: column;
		padding: 30px 15px;
	}
	.cta-banner h2{
		font-size: 22px;
	}
	.cta-banner h3{
		font-size: 20;
	}
	.cta-banner p{
		font-size: 18px;
	}

	.vision-founder {
		padding: 40px 15px;
	}
	.vision-founder h2 {
		font-size: 25px;
		margin-bottom: 15px;
	}
}



/* ===============loan comparison section============== */
.loan-comparison-section {
	padding: 0px 20px 40px;
	background: #FFF;
}

.loan-comparison-wrapper {
	max-width: 1200px;
	margin: 0 auto;
}

.loan-comparison-section h2 {
	color: #27ae60;
	font-size: 2.2rem;
	margin-bottom: 10px;
	text-align: center;
}

.loan-comparison-subtitle {
	color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 47px;
}

.loan-comparison-table-wrapper {
	border-radius: 12px;
	overflow: hidden;
	padding: 20px 30px;
	background: #F3F3F3;
}

.loan-comparison-header {
	background: #1a5c32;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	gap: 15px;
	padding: 18px 25px;
	color: white;
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 20px;
	border-radius: 14px;
	text-align: center;
}

.loan-comparison-item {
	margin-bottom: 40px;
}

.loan-comparison-item:last-child {
	border-bottom: none;
}

.loan-comparison-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	gap: 15px;
	padding: 20px;
	align-items: center;
	transition: background 0.2s;
	text-align: center;
	background: #FFF;
	border-radius: 20px;
	position: relative;
	margin-bottom: -20px;
}

.loan-comparison-lender-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
	justify-content: center;
	align-items: center;
}

.loan-comparison-lender-name {
	display: flex;
	align-items: center;
	gap: 8px;
}

.loan-comparison-lender-logo {
	max-width: 120px;
	height: auto;
}

.loan-comparison-rating {
	display: flex;
	align-items: center;
	gap: 6px;
}

.loan-comparison-stars {
	color: #fbbf24;
	font-size: 1rem;
}

.loan-comparison-score {
	color: #5f6368;
	font-weight: 600;
	font-size: 0.9rem;
}

.loan-comparison-details-link {
	color: #27ae60;
	font-size: 0.85rem;
	text-decoration: none;
	cursor: pointer;
	user-select: none;
}

.loan-comparison-details-link:hover {
	text-decoration: underline;
}

.loan-comparison-best-for {
	color: #27ae60;
	font-size: 17px;
}

.loan-comparison-cta-button {
	background: #27ae60;
	color: #FFF;
	border: none;
	padding: 10px 20px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.2s;
	white-space: nowrap;
}

.loan-comparison-cta-button:hover {
	background: #229954;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.loan-comparison-text-cell {
	color: #202124;
	font-size: 17px;
	font-weight: 600;
}

.loan-comparison-details-section {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-in-out;
	background: #FFF;
	border-radius: 0 0 20px 20px;
}

.loan-comparison-details-section.active {
	max-height: 800px;
}

.loan-comparison-details-content {
	padding: 50px 40px 30px;
}

.loan-comparison-details-header {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 15px;
	color: #202124;
}

.loan-comparison-details-description {
	color: #5f6368;
	line-height: 1.6;
	margin-bottom: 25px;
}

.loan-comparison-pros-cons-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 25px;
}

.loan-comparison-pros-cons-box {
	background: white;
	padding: 20px;
	border-radius: 8px;
}

.loan-comparison-pros-cons-title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 15px;
}

.loan-comparison-pros-cons-title.pros {
	color: #1a5c32;
}

.loan-comparison-pros-cons-title.cons {
	color: #fc0000;
}

.loan-comparison-pros-cons-title svg {
	width: 20px;
	height: 20px;
}

.loan-comparison-pros-cons-list {
	list-style: none;
}

.loan-comparison-pros-cons-list li {
	padding-left: 0;
	margin-bottom: 8px;
	color: #202124;
	line-height: 1.5;
}

.loan-comparison-pros-cons-list li:before {
	content: "• ";
	font-weight: bold;
	margin-right: 8px;
}

.loan-comparison-eligibility-section {
	background: white;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.loan-comparison-eligibility-title {
	font-weight: 600;
	font-size: 1.1rem;
	margin-bottom: 12px;
	color: #202124;
}

.loan-comparison-eligibility-list {
	list-style: none;
}

.loan-comparison-eligibility-list li {
	padding-left: 0;
	margin-bottom: 8px;
	color: #202124;
	line-height: 1.5;
}

.loan-comparison-eligibility-list li:before {
	content: "• ";
	font-weight: bold;
	margin-right: 8px;
}

.loan-comparison-details-cta {
	background: #27ae60;
	color: #FFF;
	border: none;
	padding: 12px 30px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.2s;
	margin-bottom: 15px;
}

.loan-comparison-details-cta:hover {
	background: #229954;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.loan-comparison-see-less-link {
	color: #27ae60;
	font-size: 0.9rem;
	text-decoration: none;
	cursor: pointer;
	user-select: none;
}

.loan-comparison-see-less-link:hover {
	text-decoration: underline;
}

@media (max-width: 768px) {
	.loan-comparison-wrapper {
		padding: 0;
	}

	.loan-comparison-item {
		margin-bottom: 10px;
	}

	.loan-comparison-section h2 {
		font-size: 24px;
		padding: 0px;
	}

	.loan-comparison-subtitle {
		font-size: 16px;
		line-height: 24px;
		padding: 0px;
		margin-bottom: 20px;
	}

	.loan-comparison-table-wrapper {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding: 0;
		background: #FFF;
	}

	.loan-comparison-cta-button {
		padding: 10px 15px;
		font-size: 12px;
	}

	.loan-comparison-header {
		min-width: 900px;
		align-items: center;
		padding: 10px;
	}

	.loan-comparison-text-cell {
		color: #202124;
		font-size: 14px;
	}

	.loan-comparison-row {
		min-width: 900px;
		margin-bottom: 0px;
		padding: 10px;
	}

	.loan-comparison-details-content {
		background: #FFF;
		padding: 10px;
	}

	.loan-comparison-pros-cons-container {
		grid-template-columns: 1fr;
		gap: 0px;
		margin-bottom: 0;
	}

	.loan-comparison-details-header {
		font-size: 1.2rem;
		font-weight: 600;
		margin-bottom: 15px;
		color: #202124;
		padding: 0px;
	}

	.loan-comparison-best-for {
		font-size: 14px;
	}

	.loan-comparison-pros-cons-box {
		padding: 10px;
	}
}


/* ===== LOAN ESTIMATE TABLE STYLES ===== */
.loan-estimate-section {
	padding: 2rem 1rem;
}

.loan-estimate-container {
	max-width: 1200px;
	margin: 0 auto;
}

.loan-estimate-title {
	text-align: center;
}

.loan-estimate-title h2 {
	font-size: 2rem;
	font-weight: bold;
	color: #111827;
	margin-bottom: 1rem;
}

.loan-estimate-title p {
	color: #4b5563;
	font-size: 1rem;
}

@media (min-width: 640px) {
	.loan-estimate-title h2 { font-size: 2.5rem; }
	.loan-estimate-title p { font-size: 1.125rem; }
}

@media (min-width: 1024px) {
	.loan-estimate-title h2 { font-size: 3rem; }
}

/* Override global table styles */

table.loan-estimate-table {
	width: 100% !important;
	border-collapse: collapse !important;
	border-spacing: 0 !important;
	overflow-x: scroll;
	margin: 40px auto 20px;
}

table.loan-estimate-table thead tr {
	background: #52d68a !important;
}

table.loan-estimate-table thead tr th {
	text-align: center !important;
	padding: 16px 20px !important;
	font-weight: 700 !important;
	font-size: 13px !important;
	color: white !important;
	background: #52d68a !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 0 !important;
	width: 25% !important;
	border: 1px solid #27ae60 !important;
}

table.loan-estimate-table thead tr th:first-child {
	border-radius: 0 !important;
	padding-left: 20px !important;
}

table.loan-estimate-table thead tr th:last-child {
	border-radius: 0 !important;
	padding-left: 20px !important;
}

@media (min-width: 640px) {
	table.loan-estimate-table thead tr th { padding: 18px 24px !important; font-size: 14px !important; }
}

@media (min-width: 1024px) {
	table.loan-estimate-table thead tr th { font-size: 15px !important; }
}

table.loan-estimate-table tbody tr td {
	padding: 14px 20px !important;
	font-size: 14px !important;
	color: #374151 !important;
	text-align: center !important;
	border-radius: 0 !important;
	width: 25% !important;
	border: 1px solid #27ae60 !important;
	font-weight: 400 !important;
}

@media (min-width: 640px) {
	table.loan-estimate-table tbody tr td { 
		padding: 16px 24px !important; 
		font-size: 15px !important; 
	}
}

@media (min-width: 1024px) {
	table.loan-estimate-table tbody tr td { 
		font-size: 20px !important; 
	}
}

table.loan-estimate-table tbody tr.loan-estimate-row-even td {
	background: #eafaf1 !important;
}

table.loan-estimate-table tbody tr.loan-estimate-row-odd td {
	background: #ffffff !important;
}


.loan-estimate-footer-note {
	text-align: center;
	font-size: 17px;
	font-style: italic;
	margin-bottom: 20px;
}

/* ===== LOAN ESTIMATE TABLE - MOBILE RESPONSIVE ===== */
.loan-estimate-table-wrapper {
	width: 100%;
	border-radius: 12px;
}

@media (max-width: 768px) {
	.loan-estimate-section {
		padding: 1.5rem 0.75rem;
	}

	.loan-estimate-title {
		margin-bottom: 1.5rem;
	}

	.loan-estimate-title h2 {
		font-size: 1.5rem;
		padding: 0 10px;
	}

	.loan-estimate-title p {
		font-size: 0.875rem;
		padding: 0 10px;
	}

	table.loan-estimate-table {
		min-width: 500px;
	}

	table.loan-estimate-table thead tr th {
		padding: 10px 8px !important;
		font-size: 10px !important;
		letter-spacing: 0.3px;
	}

	table.loan-estimate-table thead tr th:first-child,
	table.loan-estimate-table thead tr th:last-child {
		padding-left: 8px !important;
	}

	table.loan-estimate-table tbody tr td {
		padding: 10px 8px !important;
		font-size: 12px !important;
	}

	.loan-estimate-footer-note {
		font-size: 12px;
		padding: 0 10px;
		margin-top: 10px;
	}
}

@media (max-width: 480px) {
	.loan-estimate-table-wrapper {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.loan-estimate-title h2 {
		font-size: 1.25rem;
	}

	.loan-estimate-title p {
		font-size: 0.8rem;
	}

	table.loan-estimate-table {
		min-width: 380px;
	}

	table.loan-estimate-table thead tr th {
		padding: 8px 5px !important;
		font-size: 9px !important;
	}

	table.loan-estimate-table tbody tr td {
		padding: 8px 5px !important;
		font-size: 11px !important;
	}
}