.download-app-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.download-app-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.download-app-header {
  text-align: center;
  margin-bottom: 60px;
}

.download-app-title {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.download-app-subtitle {
  font-size: 1.2rem;
  color: #666;
  font-weight: 400;
}

.download-app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.download-app-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.download-app-card.active {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #FF6B35;
}

.download-app-card h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  position: relative;
}

.download-app-card h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  border-radius: 2px;
}

.download-app-card .image {
  margin-bottom: 30px;
}

.download-app-card .image img {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.download-app-card:hover .image img {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.app-badge {
  margin-bottom: 20px;
}

.app-badge .platform-title {
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.app-badge img {
  width: 180px;
  height: 60px;
  object-fit: contain;
  transition: all 0.3s ease;
  border-radius: 8px;
}

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

.download-app-card .button {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  margin-top: 20px;
}

.download-app-card .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: white;
  text-decoration: none;
}

.app-features {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  margin-top: 40px;
}

.app-features h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 20px;
}

.feature-item .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.feature-item .feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .download-app-section {
    padding: 60px 0;
  }

  .download-app-title {
    font-size: 2.5rem;
  }

  .download-app-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .download-app-card {
    padding: 14px;
    border-radius: 8px;
  }

  .download-app-card h2 {
    font-size: 1.8rem;
  }

  .download-app-card .image img {
    width: 100px;
    height: 100px;
  }

  .app-features {
    padding: 14px;
    border-radius: 8px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .download-app-title {
    font-size: 2rem;
  }

  .download-app-card {
    padding: 8px;
    border-radius: 6px;
  }

  .download-app-card h2 {
    font-size: 1.5rem;
  }

  .download-app-card .image img {
    width: 80px;
    height: 80px;
  }

  .app-badge img {
    height: 40px;
  }

  .app-features {
    padding: 8px;
    border-radius: 6px;
  }
}
