/* Download page specific styles */

body.download-page {
  padding-top: 5rem;
}

.download-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 4rem 0;
  margin-bottom: 3rem;
  border-radius: 0 0 2rem 2rem;
}

.download-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.download-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  padding: 20px 40px;
  background: white;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  min-width: 200px;
}

.store-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
  color: var(--primary-color);
}

.store-btn i {
  font-size: 2.5rem;
  margin-right: 15px;
}

.store-text {
  text-align: left;
}

.store-text .small-text {
  font-size: 0.9rem;
  opacity: 0.7;
}

.store-text .large-text {
  font-size: 1.3rem;
  font-weight: 700;
}

.features-section {
  padding: 3rem 0;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.feature-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.qr-section {
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  text-align: center;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .download-title {
    font-size: 2.2rem;
  }
  .download-subtitle {
    font-size: 1.1rem;
  }
  .store-buttons {
    flex-direction: column;
    align-items: center;
  }
}
