.inhouse-seminar-layout {
  display: flex;
  gap: var(--mp56);
  align-items: stretch;
  margin-top: var(--mp64);
  margin-bottom: var(--mp64);
}

/* LEFT COLUMN */
.inhouse-seminar-left {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: var(--mp16);
  border-left: 1px solid rgba(0, 0, 0, 0.3)
}

.inhouse-seminar-module {
  background: transparent;
  padding: var(--mp20);
  gap: var(--mp8);
  display: flex;
  margin-left: var(--mp40);
  flex-direction: column;
}

.inhouse-seminar-title {
  margin-bottom: var(--mp8);
  font-weight: var(--font-weight-700);
  font-size: var(--font-size-24);
  line-height: var(--line-height-32);
  vertical-align: middle;
  color: rgba(17, 24, 39, 1);
}

.inhouse-seminar-desc {
  list-style: disc;
  font-weight: var(--font-weight-400);
  font-size: var(--font-size-16);
  line-height: var(--line-height-24);
  vertical-align: middle;
  color: rgba(75, 85, 99, 1);
  padding-left: 20px;
}

.inhouse-seminar-footer {
  margin-top: var(--mp8);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inhouse-seminar-price {
  color: rgba(220, 38, 38, 1);
  font-weight: var(--font-weight-600);
  font-size: var(--font-size-30);
  line-height: var(--line-height-36);
  vertical-align: middle;
}

.inhouse-seminar-button {
  background: var(--Base-Dark-purple, rgba(37, 13, 70, 1));
  color: white;
  border-radius: 999px;
  padding: 12px 20px;
  gap: var(--mp8);
  text-decoration: none;
  font-weight: var(--font-weight-500);
  font-size: var(--font-size-16);
  line-height: var(--line-height-24);
  vertical-align: middle;
}

.inhouse-seminar-divider {
  border-top: 1px solid #ddd;
}

/* CUSTOM OFFER block */
.inhouse-custom-offer {
  border-radius: var(--border-radius-24);
  background: var(--Default-red-50, rgba(254, 242, 242, 1));
  border: 1px solid rgb(170, 117, 117);  
}

.inhouse-custom-title {
  margin-bottom: var(--mp8);
  font-weight: var(--font-weight-700);
  font-size: var(--font-size-24);
  line-height: var(--line-height-32);
  vertical-align: middle;
  color: rgba(220, 38, 38, 1);
}

.inhouse-custom-features {
  list-style: disc;
  font-weight: var(--font-weight-400);
  font-size: var(--font-size-16);
  line-height: var(--line-height-24);
  vertical-align: middle;
  color: rgba(31, 41, 55, 1);
  padding-left: 20px;
}

.inhouse-custom-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inhouse-custom-price {
  padding-left: 20px;
  font-weight: var(--font-weight-500);
  font-size: var(--font-size-18);
  line-height: var(--line-height-28);
  vertical-align: middle;
  color: rgba(156, 163, 175, 1);
}

.inhouse-custom-button {
  color: white;
  border-radius: 999px;
  padding: 12px 20px;
  gap: var(--mp8);
  text-decoration: none;
  background: linear-gradient(252.65deg, #E5052C 8.18%, #250E45 91.82%);
  font-weight: var(--font-weight-500);
  font-size: var(--font-size-16);
  line-height: var(--line-height-24);

  &:hover {
    color: var(--text-white);
  }
}

/* RIGHT IMAGE COLUMN */
.inhouse-seminar-right {
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  border-radius: var(--mp12);
}