/* Start custom CSS *//* Buy Now Button */
.buy-now-btn {
  display: inline-block;
  background: #003b99 !important;   /* Dark Blue */
  color: #fff !important;            /* White Text */
  padding: 10px 22px;                /* Small size */
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  text-align: center;
  margin: 18px auto 0 auto;
  text-decoration: none !important;
  transition: 0.3s ease;
}
.buy-now-btn:hover {
  background: #002c75 !important;
  color: #fff !important;
}

/* Read More (Schedule Button) */
.read-more-btn {
  display: inline-block;
  background: #003b99 !important;   /* Dark Blue */
  color: #fff !important;
  padding: 8px 18px;                /* Slightly smaller */
  font-size: 14px;
  border-radius: 6px;
  font-weight: 500;
  margin-top: 12px;
  text-decoration: none !important;
  transition: 0.3s ease;
}
.read-more-btn:hover {
  background: #002c75 !important;
  color: #fff !important;
}/* End custom CSS */