@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

.ps-hero {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ps-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.8rem 0;
  letter-spacing: 1px;
}

.ps-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 400;
}

.ps-breadcrumb a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: opacity 0.2s ease;
}

.ps-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.ps-breadcrumb .divider {
  opacity: 0.6;
}

.ps-breadcrumb .active {
  opacity: 1;
  font-weight: 500;
}

.ps-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  font-family: 'Poppins', sans-serif;
}

.ps-deadline {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  padding: 1.5rem 1rem;
}

.ps-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #222;
}

.ps-content p {
  margin-bottom: 1.5rem;
}

.ps-link {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
}

.ps-link:hover {
  color: #0f45a2;
}

.ps-guidelines {
  list-style: disc;
  padding-left: 2.5rem;
  margin-top: 0.5rem;
}

.ps-guidelines li {
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .ps-hero h1 {
    font-size: 2rem;
  }

  .ps-deadline {
    font-size: 1.2rem;
    padding: 1rem 0.5rem;
  }

  .ps-container {
    padding: 2rem 1rem 3rem;
  }

  .ps-content {
    font-size: 0.95rem;
  }
}
