.download {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.download__container {
  max-width: 800px;
  margin: 0 auto;
}

.download__content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.download__icon {
  width: 80px;
  height: 80px;
  color: #1a5f7a;
  margin-bottom: 1.5rem;
}

.download__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.download__description {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.download__button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, #1a5f7a 0%, #0891b2 100%);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(26, 95, 122, 0.3);
}

.download__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26, 95, 122, 0.4);
}

.download__button svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .download__content {
    padding: 2rem;
  }
  
  .download__title {
    font-size: 1.5rem;
  }
  
  .download__button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}