.cta-section {
  position: relative;
  background: linear-gradient(135deg, #5F4EEE, #3A2CA5);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
}

.cta-overlay {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-section .highlight {
  color: #FFD700;
  font-weight: bold;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.download-btn img {
  width: 70px;
  height: 70px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #333;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.download-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.25);
}

.download-btn span {
  font-size: 1.8rem;
}

.download-btn .small-text {
  font-size: 0.75rem;
  color: #666;
}

.download-btn .big-text {
  font-weight: bold;
  font-size: 1.1rem;
  color: #000;
}

/* Apple button style */
.download-btn.apple {
  background: #fff;
}

/* Google Play style (when enabled) */
.download-btn.google {
  background: #202124;
  color: #fff;
}

.download-btn.google .big-text {
  color: #fff;
}