.coupon-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  padding: 8px 16px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 50px 90px 20px 10%;
  width: 80%;
}

.coupon-bar a {
  color: inherit;
  text-decoration: none;
  font-weight: normal;
}

.coupon-bar a:hover {
  text-decoration: underline;
}

.coupon-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-text {
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.left-text i {
  margin-left: 6px;
}

.coupon-code {
  background-color: #fff;
  border: 1px dashed #28a745;
  padding: 4px 8px;
  cursor: pointer;
  user-select: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
}

.coupon-code-text {
  margin-right: 6px;
}

.copy-icon {
  font-size: 14px;
  cursor: pointer;
}

.right-link {
  position: absolute;
  right: 16px;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .coupon-bar {
    margin: 40px 60px 20px 60px;
  }
}

@media (max-width: 992px) {
  .coupon-bar {
    margin: 30px 40px 15px 40px;
  }
}

@media (max-width: 768px) {
  .coupon-bar {
    margin: 20px 20px 15px 20px;
    flex-direction: column;
    padding: 10px;
  }

  .coupon-center {
    margin-bottom: 0;
  }

  .right-link {
    display: none;
    /* Hide the Contact Us link on smaller screens */
  }
}

@media (max-width: 576px) {
  .coupon-bar {
    margin: 15px 10px 10px 10px;
  }
}