.discount-form {
  padding: 25px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  text-align: center;
  font-family: "Open Sans", Arial, sans-serif;
}

.discount-form h3 {
  color: #0067a6;
  margin-bottom: 10px;
}

.discount-form p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

.discount-form .form-group {
  text-align: left;
  margin-bottom: 12px;
}

.discount-form label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 4px;
}

.discount-form input[type="text"],
.discount-form input[type="tel"],
.discount-form input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: 0.3s;
}

.discount-form input[type="text"]:focus,
.discount-form input[type="tel"]:focus {
  border-color: #49a0d5;
  outline: none;
}

.discount-form input[type="submit"],
.discount-form button {
  background: #49a0d5;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
  width: 100%;
}

.discount-form input[type="submit"]:hover,
.discount-form button:hover {
  background: #037bca;
}

.menu-green a,
.menu-green span {
    color: #2ecc71 !important;
}

.menu-green a:hover {
    color: #27ae60 !important;
}