.iw-nav {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 0;
}

.iw-nav .navbar-brand,
.iw-nav .nav-link {
  color: var(--primary-color) !important;
  font-weight: 700;
}

.iw-hero {
  background: var(--iw-light);
  border-bottom: 1px solid #e0e0e0;
  padding: 56px 0 28px;
}

.iw-breadcrumb {
  color: #7aa7ff;
  font-size: 14px;
}

.iw-title {
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 800;
  margin-top: 10px;
}

.iw-process-wrap {
  padding: 56px 0;
}

.iw-process-heading {
  text-align: center;
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 26px;
}

.iw-step {
  background: #F2F8FF;
  border: none;
  border-radius: 0px;
  padding: 30px 40px;
  margin-bottom: 16px;
  transition: background 200ms;
}

.iw-step:hover {
  background: #eef5ff;
}

.iw-step-header {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
}

.iw-step-title {
  color: #3b82f6;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.iw-step-desc {
  display: none;
  color: #3b82f6;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.iw-step.open .iw-step-desc {
  display: block;
}

.iw-step-icon {
  font-size: 28px;
  font-weight: 300;
  color: #3b82f6;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iw-cta {
  margin: 46px 0 80px;
  background: #eaf3ff;
  border: 1px solid var(--iw-border);
  border-radius: 0px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.iw-cta-title {
  color: var(--primary-color);
  font-weight: 800;
  font-size: 22px;
  margin: 0;
}

.iw-cta-btn {
  background: var(--primary-color);
  color: #fff;
  border: none;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 6px;
}

.iw-cta-btn:hover {
  background: var(--primary-color-dark);
  color: #fff;
}

@media (max-width: 768px) {
  .iw-title {
    font-size: 32px;
  }

  .iw-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}