/* Hero Section Styles */
.hero-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-left {
  flex: 1;
}

.hero-right {
  flex: 1;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: #e8f4ff;
  color: #0066cc;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 10px;
}

.hero-heading {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.hero-subheading {
  font-size: 20px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 32px;
}

.hero-cta {
  display: inline-block;
  padding: 16px 32px;
  background-color: #0066cc;
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.hero-cta:hover {
  background-color: #0052a3;
  color: #ffffff;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    gap: 40px;
  }

  .hero-heading {
    font-size: 36px;
  }

  .hero-subheading {
    font-size: 18px;
  }
}
