body {
  font-family: 'font';
  margin: 0;
}

.promo-banner {
  background: hotpink;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  padding: 10px;
  margin: 5px auto;
  width: 96%;
  text-align: center;
}

.bulletin-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  max-width: 1480px;
  width: 100%;
  margin: 20px auto;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 2px solid #000;
}

.card {
  background: #fcb6c9;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
}

.card h3 {
  font-size: 1.2rem;
  color: #c2185b;
  margin: 5px 0;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.card.promotion-card {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.card.video-card iframe {
  width: 100%;
  height: 675px;
  border-radius: 15px;
}

.card.faqs button {
  margin: 3px;
}

.faq-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.faq-modal-content {
  background: #fcb6c9;
  margin: 10% auto;
  padding: 20px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  text-align: left;
}

.faq-close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

.feedback-section {
  text-align: center;
  padding: 40px 20px;
}

.feedback-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #e91e63;
  margin-bottom: 10px;
}

.stars {
  font-size: 2rem;
  margin-bottom: 30px;
}

.feedback-cards .card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.review-card {
  background: #b2ebf2;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #003333;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 1rem;
  color: #555;
  font-style: italic;
}

.feedback-form {
  margin-top: 40px auto;
  text-align: center;
}

.feedback-form h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #e91e63;
  margin-bottom: 5px;
}

.feedback-form p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: #444;
}

.feedback-form form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 20px;
  border: none;
  background: #f8b4c8;
  font-size: 1rem;
  outline: none;
}

.feedback-form textarea {
  border-radius: 20px;
  resize: none;
}

.feedback-form button {
  background: #e91e63;
  display: inline-block;
  margin: auto;
  width: 20%;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.feedback-form button:hover {
  background: #d81b60;
}

.card input[type="text"] {
  padding: 10px;
  border-radius: 10px;
  border: none;
  width: 80%;
  margin-bottom: 10px;
}

.card button {
  padding: 8px 15px;
  border: none;
  border-radius: 10px;
  background: #ff7fa1;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}

.card button:hover {
  background: #ff5c88;
}

.promo-list {
  margin-top: 15px;
  background: #fff6f8;
  padding: 10px;
  border-radius: 10px;
  height: 100px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.promo-item {
  background: #ffe2eb;
  padding: 10px;
  border-radius: 8px;
  text-align: left;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.promo-item strong {
  color: #c2185b;
}

.promo-item p {
  margin: 4px 0;
}

.promo-item .available {
  color: green;
  font-weight: bold;
}

.promo-item .used {
  color: red;
  font-weight: bold;
}

.use-btn {
  padding: 6px 10px;
  background: #ff7fa1;
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  margin-top: 5px;
}

.use-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.disabled-text {
  text-align: center;
  color: #999;
  font-style: italic;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  marquee {
    font-size: 2rem;
  }

  .bulletin-container {
    display: flex;
    flex-direction: column;
  }

  .bulletin-container h3,
  .bulletin-container p,
  .bulletin-container a {
    font-size: 2rem;
  }

  .bulletin-container button {
    font-size: 1.5rem;
    padding: 10px 20px;
  }

  .right-column {
    order: 1;
  }

  .left-column {
    order: 2;
  }

  .review-cards {
    display: inline;
  }

  .review-card h3,
  .review-card p {
    font-size: 2rem;
  }

  .review-card:hover {
    transform: none;
  }

  .feedback-form h2,
  .feedback-form p {
    font-size: 2rem;
  }

  .feedback-form input,
  .feedback-form textarea {
    font-size: 2rem;
    padding: 15px 20px;
  }

  .feedback-form button {
    width: 40%;
    font-size: 2rem;
  }
}