.hero-section {
  background: linear-gradient(120deg, #004d25 0%, #00a346 50%, #4ade80 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-image img {
  max-width: 100%;
  max-height: 500px;
  height: auto;
  object-fit: contain;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-buttons .btn {
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-icon {
  animation: pulse 2s infinite;
}

.screenshot-card img {
  transition: all 0.3s ease;
}

.screenshot-card:hover img {
  transform: scale(1.05);
}

.cta-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.cta-buttons .btn {
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
  }

  .hero-image img {
    max-height: 400px;
  }

  .hero-buttons .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
  }

  .feature-card {
    margin-bottom: 1.5rem;
  }
}

/* Store button specific styles */
.btn .bi-apple,
.btn .bi-google-play {
  color: #333;
}

.btn:hover .bi-apple,
.btn:hover .bi-google-play {
  color: #000;
}

.btn small {
  font-size: 0.75rem;
  line-height: 1;
}

.btn strong {
  font-size: 1rem;
  line-height: 1.2;
}
