:root {
  --color-bg: #e5ecf5;
  --color-card: #e5ecf5;
  --text-dark: #2e2e2e;
  --color-muted: #64748b;
  --accent-blue: #5472d4;


  --primary-font: 'Google Sans', Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Avenir, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--primary-font);
  /* background: linear-gradient(135deg, var(--color-bg), #1e293b); */
  color: var(--text-dark);
  min-height: 100vh;
}

.page-collage {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-color: #273133;
  background-image: url('images/collage.webp');
  background-size: 1848px 1078px;
  background-position: top center;
  background-repeat: repeat;
}

.page-collage::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(39, 49, 51, 0.55);
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.card {
  background: var(--color-card);
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  padding: 3rem 2.5rem;
  max-width: 70rem;
  width: 100%;
  text-align: center;
}

.card-logo {
  display: block;
  margin: 0 auto 2rem;
  width: auto;
  height: auto;
  max-width: 22rem;
  max-height: 7rem;
  object-fit: contain;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin: 0 0 0.75rem;
}

h1 {
  font-size: 2.25rem;
  margin: 0 0 0.75rem;
}

.subtitle {
  color: var(--color-muted);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================
   INSTITUTIONAL LOGOS
   ========================================== */
.logos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 100%;
  margin-top: 2.5rem;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-item img {
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-item.institutional img {
  max-height: 130px;
  max-width: 300px;
}

@media (max-width: 490px) {
  .card-logo {
    max-width: 18rem;
    max-height: 6rem;
  }
}

@media (max-width: 400px) {
  .card-logo {
    max-width: 14rem;
    max-height: 5rem;
  }
}