:root {
  --navy: #000000;
  --gold: #ff0000;
  --gold-dark: red;
  --cream: #ececec5e;
  --muted2: #000;
}
.welcome-content-section {
  padding: 70px 0;
}
.welcome-card {
  background: #fff;
  border: none;
  border-radius: 18px;
  padding: 56px 64px;
  /* box-shadow: 0 6px 30px rgba(24, 33, 51, 0.08); */
  position: relative;
  overflow: hidden;
}
.welcome-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 100%);
}
.welcome-text {
  font-size: 20px;
  color: var(--muted2);
  margin-top: 16px;
  margin-bottom: 0;
  text-align: justify;
}
.welcome-text strong {
  color: var(--navy);
  font-weight: 700;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.7rem 1.9rem;
  border: none;
  transition: 0.2s;
  display: inline-block;
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: #fff;
}
ul li {
  list-style: disc;
}
ol,
ul {
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .welcome-card {
    padding: 34px 24px;
  }
  .welcome-text {
    font-size: 0.95rem;
    text-align: left;
  }
}
