.sudlex-download {
  max-width: 600px;
  margin: 30px auto;
  padding: 25px 20px;
  background: #f8fdfb;
  border-radius: 32px;
  text-align: center;
  border: 1px solid #d0ebe4;
  font-family: 'Inter', sans-serif;
}

.download-title {
  font-size: 22px;
  font-weight: 700;
  color: #049f82;
  margin-bottom: 6px;
}

.download-subtitle {
  font-size: 16px;
  color: #1e293b;
  margin-bottom: 20px;
}

.download-btn {
  background: #049f82;
  color: white;
  border: none;
  padding: 16px 30px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(4, 159, 130, 0.2);
}

.download-btn.disabled {
  background: #a0c4b8;
  box-shadow: none;
  opacity: 0.7;
}

.hint {
  font-size: 13px;
  color: #64748b;
  margin: 12px 0 20px;
}

.subscribe-block {
  background: white;
  border-radius: 24px;
  padding: 20px 15px;
  margin-top: 15px;
  border: 1px dashed #049f82;
}

.subscribe-text {
  font-size: 15px;
  color: #1e293b;
  margin-bottom: 15px;
  font-weight: 500;
}

.subscribe-icons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.sub-icon {
  background: #f0fdf4;
  color: #049f82;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid #049f82;
  transition: 0.2s;
}

.sub-icon:hover {
  background: #049f82;
  color: white;
}