.reins-model {
  padding: 4rem 0;
  font-size: 2.0rem; /* 👈 increase overall size */
  line-height: 1.6;
}

.section-header {
  max-width: 800px;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header .lead {
  font-size: 1.1rem;
  font-weight: 500;
}

.role-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.role-card h4 {
  margin-bottom: 0.75rem;
}

.role-card ul {
  padding-left: 1.2rem;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.note {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.lead-text {
  font-size: 1.8rem;   /* 👈 increase size */
  font-weight: 500;
  line-height: 1.6;
}

.calendly-box {
  background-color: #0d6efd; /* blue box */
  padding: 40px 20px;
  margin: 80px auto 40px;
  max-width: 900px;
  text-align: center;
  border-radius: 12px;
}

.calendly-text {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.calendly-btn {
  display: inline-block;
  background-color: #ffffff;
  color: #0d6efd;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.calendly-btn:hover {
  background-color: #e9f0ff;
  transform: translateY(-2px);
}

.three-col-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  font-size: 1.2rem;
}

.col h2 {
  font-size: 2.9rem;
  margin-bottom: 12px;
}

.col h3 {
  margin-top: 28px;
  font-size: 1.3rem;
}

.icon {
  margin-right: 8px;
}

.col p,
.col li {
  font-size: 1.9rem;
  line-height: 1.6;
}

.col ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

/* Responsive: stack on mobile */
@media (max-width: 992px) {
  .three-col-section {
    grid-template-columns: 1fr;
  }
}
