body {
  font-family: 'Poppins', sans-serif;
}

/* ===== HERO ===== */
.about-hero {
    background: linear-gradient(
    120deg,
    #0504AA,
    #1a4fd8,
    #20B2AA
  );
  padding: 40px 20px;
  color: white;
}

.about-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-hero-text h1 {
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0.9;
}

.about-hero-text h2 {
  font-size: 3rem;
  margin: 10px 0;
  font-weight: 700;
}

.hero-sub {
  font-size: 1rem;
  opacity: 0.9;
}

.about-hero-image img {
  width: 85%;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* ===== CONTENT ===== */
.about-content {
  padding: 70px 20px;
  background: #f9fafb;
}

.content-wrap {
  max-width: 820px;
  margin: 0 auto;
  color: #1f2937;
  font-size: 1rem;
  line-height: 1.75;
}

.lead {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 22px;
}

blockquote {
  margin: 40px 0;
  padding: 20px 28px;
  background: white;
  border-left: 5px solid #0a46c2;
  font-size: 1.1rem;
  font-weight: 500;
}

.closing {
  margin-top: 30px;
  font-weight: 600;
}

.faith {
  margin-top: 10px;
  font-style: italic;
  color: #374151;
}

/* ===== CTA ===== */
.about-cta {
  background: #ffffff;
  color: #0a46c2;
  text-align: center;
  padding: 60px 20px;
}

.about-cta h3 {
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.cta-btn {
  display: inline-block;
  background: #0a46c2;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.cta-btn:hover {
  background: #153b8c;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-hero-text h2 {
    font-size: 2.4rem;
  }
}
/* =========================
   NEW TEAM SECTION
========================= */

/* =========================
   TEAM SECTION - Vertical Cards
========================= */

.team-section {
  background: linear-gradient(
    120deg,
    #0504AA,
    #1a4fd8,
    #20B2AA
  );
  padding: 100px 6%;
  color: #ffffff;
}

.team-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
}

/* Grid layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Vertical card */
.team-card {
  background: #0F2E6D;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px rgba(0,0,0,0.35);
}

/* Image */
.team-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 25px;
}

/* Name */
.team-card h3 {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Title */
.team-card p {
  color: #ffffff;
  margin-bottom: 25px;
}

/* LinkedIn button */
.linkedin-btn {
  background: #0a46c2;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.linkedin-btn:hover {
  background: #153b8c;
}

/* Responsive */
@media (max-width: 1000px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}