

.download-section{
  padding:100px 0;
  background:#f8fafc;
  font-family:Arial, Helvetica, sans-serif;
}

.download-section *{
  box-sizing:border-box;
}

.download-section .container{
  width:min(1220px,92%);
  margin:0 auto;
}

.download-wrapper{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:60px;
  align-items:center;
}

.eyebrow{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:0.18em;
  font-weight:700;
  color:#2563eb;
  margin-bottom:14px;
}

.download-content h2{
  font-size:clamp(34px,4vw,56px);
  line-height:1.08;
  letter-spacing:-0.04em;
  color:#0f172a;
  margin-bottom:24px;
}

.download-text{
  font-size:17px;
  line-height:1.8;
  color:#475569;
  margin-bottom:18px;
}

.download-buttons{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.download-card{
  display:flex;
  align-items:center;
  gap:24px;
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:24px;
  padding:28px;
  text-decoration:none;
  transition:all 0.35s ease;
  box-shadow:0 18px 45px rgba(15,23,42,0.06);
}

.download-card:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 60px rgba(15,23,42,0.10);
}

.download-icon{
  width:74px;
  height:74px;
  border-radius:18px;
  background:#eff6ff;
  color:#2563eb;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  flex-shrink:0;
}

.download-info{
  flex:1;
}

.download-info h3{
  font-size:24px;
  margin-bottom:10px;
  color:#0f172a;
}

.download-info p{
  font-size:16px;
  color:#64748b;
  line-height:1.7;
  margin:0;
}

.download-action{
  padding:14px 24px;
  border-radius:14px;
  background:#2563eb;
  color:#ffffff;
  font-size:15px;
  font-weight:600;
  white-space:nowrap;
  transition:all 0.3s ease;
}

.download-card:hover .download-action{
  background:#1d4ed8;
}

@media(max-width:900px){

  .download-wrapper{
    grid-template-columns:1fr;
  }

  .download-card{
    flex-direction:column;
    align-items:flex-start;
  }

  .download-action{
    width:100%;
    text-align:center;
  }

}

