/* =========================
   GLOBAL ENHANCEMENTS
========================= */
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f9fafb;
  color: #1f2937;
}

.section-title {
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* =========================
     PAGE HEADER
  ========================= */
section.bg-light {
  background: linear-gradient(135deg, #e6f9ee, #f0fff4);
}

section.bg-light h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

section.bg-light p {
  font-size: 1.05rem;
  color: #374151;
}

/* =========================
     ABOUT INTRO TEXT
  ========================= */
.about-intro,
section .text-center strong {
  font-weight: 700;
}

section .text-center {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* =========================
     ABOUT CARDS (Glass Effect)
  ========================= */
.about-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Gradient glow on hover */
.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(34, 197, 94, 0.15),
    rgba(16, 185, 129, 0.15)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.about-card:hover::before {
  opacity: 1;
}

.about-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Headings inside cards */
.about-card h4 {
  font-weight: 800;
  margin-bottom: 12px;
  color: #065f46;
}

/* List styling */
.about-card ul {
  padding-left: 0;
  list-style: none;
}

.about-card ul li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  font-weight: 500;
}

.about-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: bold;
}

/* =========================
     ASSURANCE CARD (Highlight)
  ========================= */
.assurance-card {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid rgba(16, 185, 129, 0.3);
}
