.download-app-section {
  background: linear-gradient(90deg, #ffe082 0%, #ffd54f 100%);
  padding: 60px 0 40px 0;
  display: flex;
  justify-content: center;
}
.download-app-container {
  display: flex;
  align-items: center;
  max-width: 950px;
  width: 100%;
  background: #fffbe7;
  border-radius: 32px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.08);
  padding: 36px 32px;
  gap: 40px;
}
.download-app-image img {
  width: 180px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.13));
}
.download-app-content {
  flex: 1;
  text-align: left;
}
.download-app-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: #222;
  margin-bottom: 0.2em;
}
.download-app-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
}
.download-app-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 22px;
  max-width: 420px;
}
.download-app-buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}
.download-btn img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  background: #fff;
}
.download-app-qr img {
  height: 80px;
  width: 80px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
@media (max-width: 800px) {
  .download-app-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 12px;
  }
  .download-app-image img {
    width: 120px;
  }
}
