body {
	margin: 0;
	background-color: #fafafa;
	font-family: IRANSans, sans-serif;
}
.banner {
	background-image: url("./428.png");
	background-size: cover;
	background-position: left;
	background-repeat: no-repeat;
	display: flex;
	justify-content: space-between;
	align-items: start;
	padding-top: 56px;
	width: 100%;
	position: relative;
	min-height: 650px;
}

.banner-title {
	font-weight: 800;
	font-size: 24px;
	color: white;
	margin: 0;
}

.banner-text {
	font-weight: 400;
	font-size: 14px;
	color: white;
	max-width: 486px;
}

.banner-button {
	background-color: #111827;
	border-radius: 5px;
	color: white;
	font-weight: 600;
	font-size: 16px;
	padding: 15px 24px;
	text-decoration: none;
	width: 161px;
	text-align: center;
}

.banner-info {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-right: 40px;
	max-width: 300px;
}

/* اول: برای tablet و بالاتر (768px به بالا) – احتمالاً lg رو نشون بده */
@media screen and (min-width: 768px) {
	.banner {
		min-height: 559px;
		background-image: url("./768.png");
		background-position: left;
		align-items: center;
	}
	.banner-title {
		font-size: 40px;
	}
	.banner-text {
		font-size: 16px;
	}
	.banner-info {
		margin-right: 40px;
		max-width: 348px;
	}
}

/* آخر: برای desktop بزرگ (1360px به بالا) – xl رو نشون بده */
@media screen and (min-width: 1360px) {
	.banner {
		min-height: 800px;
		background-image: url("./1440.png");
	}
	.banner-title {
		font-size: 56px;
	}
	.banner-info {
		margin-right: 80px;
		max-width: none;
	}
	.banner-text {
		max-width: 700px;
	}
}
