@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');
.features-container {
  display: flex;
  background-color: #f0f8ff;
  border-radius: 16px;
  padding: 60px;
  width: 100%;
  margin: 0 auto;
}

.features-list {
  flex: 2 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-number {
  background-color: #1a73e8;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

.feature-content {
  display: flex;
  flex-direction: column;
}

.feature2-title {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 5px 0;
  color: #000;
}

.feature-description {
  font-size: 16px;
  margin: 0;
  color: #333;
  font-family: 'Nunito', sans-serif;
}

.empty-box {
  flex: 1 1;
  background-color: white;
  border-radius: 8px;
  margin-left: 20px;
  min-height: 300px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .features-container {
    flex-direction: column;
    padding: 60px 20px 20px 20px;
  }

  .empty-box {
    margin-left: 0;
    margin-top: 20px;
    min-height: 200px;
  }
}

.features-section {
	padding: 30px 0px 20px 0px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	overflow: visible;
}

.features-wave-top {
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	height: 30px;
	background: white;
	border-radius: 50% 50% 0 0;
	z-index: 10;
}

.features-content {
	position: relative;
	margin-top: 20px;
}

.features-wave-bottom {
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	height: 40px;
	background: white;
	border-radius: 0 0 50% 50%;
	z-index: 10;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.features-header {
	text-align: center;
	margin-bottom: 40px;
}

.features-subtitle {
  background: linear-gradient(0deg, rgba(0, 82, 204, 1) 0%, rgba(40, 163, 255, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.features-title {
	color: #222;
	font-size: 45px;
	font-weight: 700;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.3;
}

@media (max-width: 768px) {
	.features-title {
		font-size: 32px;
	}
}
@media (max-width: 480px) {
	.features-title {
		font-size: 28px;
	}
}

