/* Fonts and Reset */
body, h1, h2, h3, p, a {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

body {
  background-color: #f9fbff;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #6dd5fa, #2980b9);
  color: #fff;
  padding: 4rem 2rem;
}

.hero-container {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 2rem;
}

.hero-text {
  text-align: center;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.app-store-badge img {
  height: 50px;
  transition: transform 0.3s;
}

.app-store-badge img:hover {
  transform: scale(1.05);
}

.hero-image img {
  max-width: 280px;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Features Section */
.features {
  background: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  font-weight: 600;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  background: #f0f4f8;
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s;
}

.feature-item:hover {
  background: #e2ecf5;
  transform: translateY(-5px);
}

.feature-item i {
  color: #2980b9;
  margin-bottom: 1rem;
}

.feature-item h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  background-color: #f4f4f4;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .features-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .feature-item {
    flex: 1;
    margin: 0 1rem;
  }
}
