/* Page-level spacing ensures the new Friends experience feels intentional */
main {
  background-color: #f7f7f7;
}

/* Hero styling keeps the Friends CTA visible and mission-driven */
.friends-hero {
  background: linear-gradient(135deg, rgba(19, 90, 197, 0.95), rgba(0, 0, 0, 0.85));
  color: #fff;
  padding: 60px 20px;
}

.friends-hero__content {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

.friends-hero__eyebrow {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: #ffe066;
}

.friends-hero__content h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.friends-hero__content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.friends-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 25px;
}

.friends-hero__cta {
  background-color: #ffe066;
  color: #000;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.2s ease;
}

.friends-hero__cta:hover {
  background-color: #ffd23f;
}

.friends-hero__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.friends-hero__contact-chip {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
}

/* Pillar cards describe the four program focus areas */
.friends-pillars {
  padding: 60px 20px;
  text-align: center;
}

.friends-pillars h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.pillar-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e0e0e0;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.pillar-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #135ac5;
}

.pillar-card p {
  line-height: 1.6;
}

/* Alignment block reinforces board oversight and continuity */
.friends-alignment {
  background-color: #135ac5;
  color: #fff;
  padding: 50px 20px;
}

.friends-alignment__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.friends-alignment__inner h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.friends-alignment__inner p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Contact grid gives quick access to communication channels */
.friends-contact {
  padding: 60px 20px;
  text-align: center;
}

.friends-contact p {
  max-width: 900px;
  margin: 0 auto 30px auto;
  line-height: 1.7;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
  margin-bottom: 10px;
  color: #135ac5;
}

.contact-card a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* FAQ styling mirrors reusable accordion spacing */
.friends-faq {
  padding: 60px 20px 80px 20px;
  background-color: #fff;
}

.friends-faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.faq-item {
  max-width: 900px;
  margin: 0 auto 20px auto;
  background-color: #f7f7f7;
  border-left: 4px solid #ffe066;
  padding: 18px 24px;
  border-radius: 8px;
}

.faq-item h3 {
  margin-bottom: 10px;
  color: #135ac5;
}

.faq-item p {
  line-height: 1.7;
}

/* Responsive tweaks keep the layout legible on phones */
@media (max-width: 600px) {
  .friends-hero__content h2 {
    font-size: 2rem;
  }

  .friends-hero__cta {
    width: 100%;
  }
}

