.platform-buttons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cta-button.android,
.cta-button.ios {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  background-color: #3ddc84; /* Android green */
}

.cta-button.ios {
  background-color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}

.cta-button img {
  height: 20px;
}
/* 🔹 Promo Section */
.promo-section {
  background: #f5f5fc;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.promo-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}

.promo-text {
  flex: 1;
  min-width: 300px;
}

.promo-text h2 {
  font-size: 2.5rem;
  color: #2d2d2d;
  margin-bottom: 1rem;
}

.promo-text p {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #444;
}

.cta-button {
  display: inline-block;
  background-color: #b31b1b;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1rem;
}

.cta-button:hover {
  background-color: #8e1414;
}

/* 🔹 Endorsements Styling */
.endorsements {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.95rem;
  color: #333;
}

.endorsements p {
  flex: 1;
  min-width: 250px;
  line-height: 1.6;
}

.endorsements strong {
  display: block;
  font-size: 1.05rem;
  color: #6a1b9a;
  margin-bottom: 0.5rem;
}

/* 🔹 Promo Image */
.promo-image {
  flex: 0 1 40%;
  text-align: center;
}

.promo-image img {
  width: clamp(200px, 30vw, 400px);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
