/* ===== HEADING STYLES ===== */
.heading-box {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  position: relative;
  display: block;
}

.heading-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: orange;
  border-radius: 3px;
}

/* ===== LINK STYLES ===== */
.hover-underline {
  font-weight: 600;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.hover-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.hover-underline:hover::after {
  transform: scaleX(1);
}

/* Color Variations */
.hover-underline.green { color: green; }
.hover-underline.green::after { background: green; }

.hover-underline.orange { color: orange; }
.hover-underline.orange::after { background: orange; }

.hover-underline.red { color: red; }
.hover-underline.red::after { background: red; }

/* ===== BUTTON STYLES ===== */
.orange-button {
  display: inline-block;
  padding: 6px 18px;
  font-weight: 500;
  color: white;
  text-decoration: none;
  border-radius: 18px;
  background: orange;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.orange-button:hover {
  background: #e77f00;
  transform: translateY(-1px);
}

.red-link {
  color: red;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.red-link:hover {
  color: #c00;
  text-decoration: underline;
}