/* ===== GLOBAL STYLES ===== */
body {
  font-family: 'Poppins', 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  background: #fff;
  margin: 0;
  padding: 0;
}

/* ===== DETAILS PAGE ===== */
.scheme-details {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  font-size: 1.05rem;
}

.scheme-details h1 {
  color: #ab183d;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
}

.scheme-details section {
  margin-bottom: 30px;
  line-height: 1.7;
}

.scheme-details h2 {
  color: #ab183d;
  border-left: 4px solid #ab183d;
  padding-left: 10px;
  font-size: 1.4rem;
  font-weight: 600;
}

.scheme-details a {
  color: #ab183d;
  text-decoration: underline;
  font-weight: 500;
  word-break: break-all;
  transition: color 0.3s ease;
}

.scheme-details a:hover {
  color: #e6007e;
  text-decoration: none;
}

.scheme-details img {
  margin: 15px;
  max-width: 100%;
  border-radius: 10px;
}

/* ===== SOCIAL UPDATES ===== */
.updates-section {
  background: #fdf2f5;
  border: 1px solid rgba(171,24,61,0.2);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  margin-top: 40px;
}

.updates-section h2 {
  color: #ab183d;
  margin-bottom: 15px;
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  border-left: none !important;
}

.updates-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.update-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 500;
  font-size: 1rem;
  transition: transform 0.2s, opacity 0.2s;
}

.update-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Platform colors */
.update-btn.telegram { background: #0088cc; }
.update-btn.whatsapp { background: #25d366; }
.update-btn.instagram { background: #e1306c; }

/* ===== RESPONSIVE ===== */
@media(max-width: 720px) {
  body {
    font-size: 15px;
  }

  .scheme-details section {
    font-size: 0.95rem;
  }
}
