.home-page {
  min-height: calc(100vh - 140px);
}

.hero-section {
  background: #274b9c;
  color: white;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  margin-left: 10%;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: white;
  color: black;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-image {
  flex: 1;
  text-align: center;
  margin-right: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-icon {
  width: 380px;
  height: auto;
  filter: brightness(1.25) contrast(1.15);
  opacity: 1;
}

.content-section {
  padding: 80px 0;
  background: #768297;
}

.content-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: white;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.content-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: white;
}

.content-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #274b9c;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 2rem;
  color: black;
  margin-bottom: 15px;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: #333;
}

.feature-card p {
  color: #666;
  margin: 0;
}

.stats-section {
  background: #274b9c;
  color: white;
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .hero-content {
    margin-left: 0;
    margin-bottom: 40px;
  }

  .hero-image {
    margin-right: 0;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
