/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 0;
  background-color: #f9f9f9;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  margin-bottom: 1.5rem;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #2c3e50;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Features */
.features {
  padding: 4rem 0;
  background-color: #f8f8f8;
}

.features-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-item {
  text-align: center;
  flex: 1 1 300px;
  max-width: 300px;
}

.feature-item img {
  max-width: 50px;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-text, .hero-image {
    max-width: 100%;
  }
  .hero-text {
    order: 2;
    margin-top: 2rem;
  }
  .hero-image {
    order: 1;
  }
  .features-grid {
    flex-direction: column;
    align-items: center;
  }
  .feature-item {
    max-width: 100%;
  }
}