:root {
  --tz-blue: #0247fe;
  --tz-green: #66b131;
  --tz-yellow: #f5c922;
  --card-bg: #ffffff;
  --muted: #6b7280;
  --radius: 14px;
}

.insu-hero {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45), 0 4px 10px rgba(0, 0, 0, 0.35);
  text-align: center !important;
}
.insu-title {
  font-size: 2.25rem;
  color: #0349fc;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-align: center;
}
.insu-subtitle {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 18px;
  text-align: center;
}
.tz-f-section-title {
  font-weight: 700;
  color: #0247fe;
}

/* Card container */
.tz-f-feature-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(10, 25, 50, 0.04);
  transition: all 0.2s ease;
}

.tz-f-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(7, 23, 51, 0.09);
}
/* Icons inside cards */
.tz-f-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 14px;
}
.tz-f-feature-title {
  color: #0d2857;
  font-weight: 700;
  margin: 0;
}

/* Text */
.tz-f-feature-text {
  font-size: 0.92rem;
}
@media (max-width: 575.98px) {
  .tz-f-feature-card {
    padding: 12px;
  }
  .tz-f-feature-icon {
    width: 40px;
    height: 40px;
  }
}

/* Section 4: clean table-like layout - tz-forex- classes */
/* Titles */
.tz-forex-head {
  color: var(--tz-blue);
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
  text-align: center;
  position: relative;
  padding-bottom: 6px;
}
.insu-sub {
  content: "";
  display: block;
  height: 6px;
  width: 180px;
  margin: 8px auto 0;
  border-radius: 6px;
  background: linear-gradient(
    90deg,
    var(--tz-blue) 0%,
    rgba(2, 71, 254, 0.25) 100%
  );
  opacity: 0.8;
}

.tz-forex-subhead {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
  text-align: center;
}

/* Container card */
.tz-forex-table-wrap {
  background: var(--card-bg);
  border: 1px solid rgba(2, 71, 254, 0.08);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: 0 12px 32px rgba(7, 23, 51, 0.04);
  position: relative;
  overflow: visible;
}

/* Each row */
.tz-forex-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 1.1rem 0.5rem;
  gap: 1.25rem;
  border-radius: 10px;
  transition: 0.18s ease;
}

/* Hover tint uses brand blue */
.tz-forex-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(2, 71, 254, 0.08);
  background: rgba(2, 71, 254, 0.04);
}

/* Header row */
.tz-forex-row-head {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(13, 40, 87, 0.08);
  transform: none;
  background: transparent;
}

/* Left column */
.tz-forex-cat {
  font-weight: 700;
  color: var(--tz-blue);
  font-size: 0.98rem;
  flex: 0 0 40%;
  position: relative;
  padding-left: 1rem;
}

/* Category accent bar (brand blue → green gradient) */
.tz-forex-cat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 5px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--tz-blue), var(--tz-green));
  opacity: 0.85;
}

/* Right column */
.tz-forex-desc {
  color: #22303f;
  font-size: 0.96rem;
  line-height: 1.6;
  flex: 1 1 60%;
  padding-left: 1rem;
}

/* ========================= */
/* Vertical line between cols */
/* ========================= */

.tz-forex-row::after {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 18%;
  left: 40%;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(2, 71, 254, 0.18),
    rgba(102, 177, 49, 0.18)
  );
  border-radius: 6px;
  opacity: 0.5;
  z-index: 0;
}

/* Center node on the divider */
.tz-forex-row::before {
  content: "";
  position: absolute;
  left: calc(40% - 8px);
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--card-bg);
  box-shadow: 0 6px 18px rgba(7, 23, 51, 0.06);
  z-index: 2;
}

/* Remove divider from header row */
.tz-forex-row-head::after,
.tz-forex-row-head::before {
  display: none;
}

/* Ensure content stays above pseudo elements */
.tz-forex-row > * {
  position: relative;
  z-index: 3;
}

/* Mobile responsiveness */
@media (max-width: 991.98px) {
  .tz-forex-row::after,
  .tz-forex-row::before {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .tz-forex-table-wrap {
    padding: 1.5rem 1rem;
  }
  .tz-forex-row {
    padding: 0.85rem 0.25rem;
    gap: 0.75rem;
  }
  .tz-forex-cat {
    font-size: 0.94rem;
    flex-basis: 42%;
    padding-left: 0.75rem;
  }
  .tz-forex-desc {
    font-size: 0.9rem;
    flex-basis: 58%;
    padding-left: 0.75rem;
  }
}

/* End of forex section 4 styles */

/* sec 5 styles */
.insu-clean-section {
  font-family: "Inter", sans-serif;
}

/* image card */
.insu-clean-image {
  background: #f9fbff;
  border-radius: 14px;
  padding: 0;
}

/* shadow */
.shadow-soft {
  box-shadow: 0 12px 35px rgba(13, 40, 87, 0.08);
}

/* title */
.insu-clean-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--tz-blue);
}

/* subhead */
.insu-clean-subtext {
  font-size: 16px;
  line-height: 1.6;
  color: #596779;
}

/* responsive mobile tweaks */
@media (max-width: 767.98px) {
  .insu-clean-title {
    font-size: 22px;
    text-align: center;
  }
  .insu-clean-subtext {
    text-align: center;
  }
  .insu-clean-image {
    margin-bottom: 10px;
  }
}
/* ========================= */

/* Forex section cta form */
.insu-wrapper {
  display: flex;
  align-items: stretch; /* SAME HEIGHT */
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
}

/* Image column */
.insu-image {
  flex: 1;
  min-width: 40%;
  max-width: 50%;
  display: flex;
}

.insu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Auto crop, perfect alignment */
  display: block;
}

/* Form column */
.insu-form {
  flex: 1;
  min-width: 50%;
  background: #eaffe7;
  display: flex;
  align-items: stretch;
}

/* Let the inner form fill height smoothly */
.insu-form > div {
  height: 100%;
}

/* Responsive stacking */
@media (max-width: 992px) {
  .insu-wrapper {
    flex-direction: column;
  }

  .insu-image,
  .insu-form {
    max-width: 100%;
    min-width: 100%;
    height: auto;
  }

  .insu-image img {
    height: auto;
  }
}
/* end of forex section cta form */
.respmsg {
  margin-top:12px;
  min-height:20px;
  font-weight:600;
  color:#66b131; /* success green */
}