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

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

.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-card-small{
  font-size: 0.75em;
}

.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: #00A3FF; /* 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;
  }
}

.services-page {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.65;
}

.services-header {
  margin-bottom: 60px;
}

.lead {
  font-size: 1.35rem;
  font-weight: 500;
}

.emphasis {
  font-size: 1.2rem;
  font-style: italic;
}

.services-section {
  margin-bottom: 70px;
}

.phase-card {
  padding: 30px;
  margin-top: 30px;
  border-left: 4px solid #0d6efd;
  background: #f9fbff;
  border-radius: 6px;
}

.phase-meta {
  font-weight: 600;
  color: #555;
}

.services-cta {
  text-align: center;
  padding: 50px 20px;
  background: #eef4ff;
  border-radius: 12px;
}

.faq-contents {
  max-height: 0;
  overflow: hidden;
  opacity: 1;
  transition: max-height 0.5s ease, opacity 0.25s ease;
}

.faq-item.active .faq-contents {
  max-height: 1000px; /* large enough for content */
  opacity: 1;
}

.faq-title-icon {
  transition: transform 0.2s ease;
}
.faq-item.active .faq-title-icon {
  transform: rotate(45deg);
}

.reins-journey-section {
  padding: 4rem 1rem;
  background: #f9fbfd;
}

.journey-header {
  text-align: center;
  margin-bottom: 3rem;
}

.journey-header h1 {
  font-size: 2.6rem;
}

.journey-subtitle {
  font-size: 1.2rem;
  color: #555;
}

.journey-block {
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.journey-block h2 {
  margin-bottom: 0.75rem;
  color: #0a4fa3;
}

.journey-block ul {
  padding-left: 1.2rem;
  margin: 1rem 0;
}

.journey-block li {
  margin-bottom: 0.4rem;
}

.journey-block.highlight {
  background: #eef4ff;
  padding: 2rem;
  border-left: 5px solid #0a4fa3;
  border-radius: 6px;
}

.journey-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 2.5rem;
  background: #0a4fa3;
  color: #fff;
  border-radius: 8px;
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  color: #0a4fa3;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
}

.reins-journey-img {
  max-width: 100%;   /* prevents oversized images */
  height: auto;
  display: block;
}

.reins-ai-title h1 {
  display: flex;
  align-items: center;
  gap: 12px;            /* space between logo and text */
}

.reins-ai-logo {
  height: 36px;        /* adjust size here */
  width: auto;
  position: relative;
  top: 6px;   /* 👈 adjust up/down */
}

.navigation-mobile {
  display: none;
}

.navigation-mobile.open {
  display: block;
}
