@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');
.new-here-container {
	background-color: #f0f8ff;
	padding: 60px 20px;
	height: 200px;
	width: 100%;
	position: relative;
	overflow: visible;
}

.new-here-content {
	max-width: 1250px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.new-here-text {
	flex: 1 1;
}

.new-here-title {
	font-size: 45px;
	font-weight: 700;
	color: #222;
	margin: 0 0 10px 0;
}

.new-here-description {
	font-size: 18px;
	color: #333;
	margin: 0;
	line-height: 1.5;
	font-family: "Nunito", sans-serif;
}

.new-here-button {
	background-color: #ffd633;
	color: #000;
	font-weight: 600;
	font-size: 16px;
	padding: 15px 30px;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 0.3s ease;
}

.new-here-button:hover {
	background-color: #ffcc00;
}
.new-here-wave {
	position: absolute;
	bottom: -50px;
	left: 0;
	width: 100%;
	height: 50px;
	background: #f0f8ff;
	border-radius: 0 0 50% 50%;
	z-index: 10;
}


/* Responsive styles */
@media (max-width: 768px) {
	.new-here-container {
		padding: 30px 15px;
		height: auto;
	}
	.new-here-content {
		flex-direction: column;
		text-align: center;
	}

	.new-here-title {
		font-size: 30px;
	}

	.new-here-description {
		font-size: 16px;
		margin-bottom: 20px;
	}
}

@media (max-width: 480px) {
	.new-here-container {
		padding: 30px 15px;
		height: auto;
	}

	.new-here-title {
		font-size: 24px;
	}

	.new-here-description {
		font-size: 14px;
	}

	.new-here-button {
		padding: 12px 25px;
		font-size: 14px;
	}
}


