:root {
  --primary-blue: #263489;
  --accent-red: #ec1d25;
  --text-black: #000000;
  --bg-light: #f4f6f9;
}

/* SECTION */
.prospectus-modern {
  background: var(--bg-light);
  padding: 60px 0;
}

/* CARD */
.prospectus-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
}

/* TOP ACCENT BORDER */
.prospectus-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-red));
  border-radius: 14px 14px 0 0;
}

/* TITLE */
.prospectus-title {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 25px;
}

/* VIDEO WRAPPER (RESPONSIVE) */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* HOVER EFFECT */
.video-wrapper:hover {
  transform: scale(1.01);
  transition: 0.3s;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .prospectus-card {
    padding: 20px;
  }

  .prospectus-title {
    font-size: 22px;
  }
}