.service-intro{
  padding-top:54px;
}

.service-intro-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:52px;
  align-items:center;
}

.service-intro .service-copy p{
  margin:0 0 18px;
  color:var(--text-light);
}

.service-copy .eyebrow,
.section-head .eyebrow{
  color:#c8423d !important;
}

.point-card{
  min-height:100%;
}

.join-grid{
  align-items:stretch;
}

.join-card.point-card{
  background:#fff;
  border:1px solid #eadfdb;
  border-radius:20px;
  box-shadow:var(--shadow);
  padding:28px;
  box-sizing:border-box;
}

.join-card.point-card h3{
  margin:0 0 12px;
}

.join-card.point-card .join-text{
  margin:0;
  color:var(--text-light);
  line-height:1.8;
}

.service-readmore{
  max-width:820px;
}

/* =====================================
   FLOW
===================================== */

.flow-list{
  max-width:960px;
  margin:0 auto;
}

.flow-item{
  display:grid;
  grid-template-columns:140px 1fr;
  gap:24px;
  padding:26px 0;
  border-bottom:1px solid #eadfdb;
}

.flow-item:first-child{
  border-top:1px solid #eadfdb;
}

.flow-step{
  margin:0;
  color:var(--brand);
  font-size:24px;
  font-weight:700;
  line-height:1.2;
}

.flow-body h3{
  margin:0 0 10px;
  font-size:24px;
}

.flow-body p{
  margin:0;
  color:var(--text-light);
  line-height:1.9;
}

/* =====================================
   CONTACT
===================================== */

.contact-box{
  max-width:980px;
}

.contact-card-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:28px;
}

.contact-card{
  background:#fff7f5;
  border:1px solid #f1d8d2;
  border-radius:20px;
  padding:28px;
  min-width:0;
  box-sizing:border-box;
}

.contact-card h3{
  margin:0 0 12px;
}

.contact-number,
.contact-mail{
  margin:0 0 10px;
  font-size:28px;
  font-weight:700;
  line-height:1.4;
  color:var(--brand);
  min-width:0;
  max-width:100%;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.contact-mail a{
  color:var(--brand);
  text-decoration:none;
  overflow-wrap:anywhere;
  word-break:break-all;
}

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

.contact-card p:last-child{
  margin:0;
  color:var(--text-light);
  line-height:1.8;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.contact-note{
  margin:22px 0 0;
  color:var(--text-light);
  line-height:1.9;
}

/* =====================================
   FAQ
===================================== */

.faq-list{
  max-width:960px;
  margin:0 auto;
  display:grid;
  gap:18px;
}

.faq-item{
  background:#fff;
  border:1px solid #eadfdb;
  border-radius:18px;
  padding:24px 26px;
}

.faq-item h3{
  margin:0 0 10px;
  font-size:22px;
}

.faq-item p{
  margin:0;
  color:var(--text-light);
  line-height:1.9;
}

.service-image img{
  aspect-ratio:5/4;
}

/* =====================================
   DONATE CARD
===================================== */

.support-donate-card{
  background:#fff7f5;
  border:1px solid #f1d8d2;
  border-radius:20px;
  padding:32px 28px;
  margin-top:28px;
  text-align:center;
  box-sizing:border-box;
}

.support-donate-text{
  margin:0 0 18px;
  color:var(--text-light);
  line-height:1.9;
}

/* =====================================
   Responsive
===================================== */

@media (max-width:1100px){
  .service-intro-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:780px){
  .flow-item{
    grid-template-columns:1fr;
    gap:10px;
  }

  .flow-step{
    font-size:22px;
  }

  .join-card.point-card{
    padding:24px;
    border-radius:18px;
  }

  .contact-card-grid{
    grid-template-columns:1fr;
  }

  .contact-card{
    padding:24px;
  }

  .contact-number,
  .contact-mail{
    font-size:24px;
    line-height:1.5;
  }

  .support-donate-card{
    padding:24px 20px;
  }
}