@font-face {
  font-family: 'font';
  src: url(font/TTFirsNeueTrialRegular.ttf);
}

body {
  font-family: 'font';
  margin: 0;
}

/* PROMO BANNER */
.promo-banner {
  background: hotpink;
  border-radius: 5px;
  color: white;
  font-weight: bold;
  padding: 10px;
  margin: 5px auto;
  width: 96%;
  text-align: center;
}

/* Two-column layout */
.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;
}

/* Apply to all cards */
.card {
  background: #fcb6c9;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
}

.card h3{
    font-size: 1.2rem;
    color: #c2185b; /* darker pink */
    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: 600px;
  border-radius: 15px;
}

.card.faqs button{
  margin: 3px;
}

.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;
}

.modal-content {
  background: #fcb6c9;
  margin: 10% auto;
  padding: 20px;
  border-radius: 15px;
  width: 90%;           /* shrink for mobile */
  max-width: 500px;     /* limit for desktop */
  text-align: left;
}

.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; /* pink */
  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 */
.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; /* light pink */
  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;
}

@media (max-width: 1024px) {
  
  .review-cards {
    display: inline;
  }

  .review-card:hover {
  transform: none;
}
}
