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

.crc-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;
}

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

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

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

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

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

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

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

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

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

.crc-content > p {
  margin-bottom: 2rem;
}

.crc-step {
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid var(--primary);
}

.crc-step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.crc-list {
  list-style: disc;
  padding-left: 1.5rem;
}

.crc-list li {
  margin-bottom: 0.6rem;
  line-height: 1.7;
}

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

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

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

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

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

  .crc-step {
    padding: 1.5rem 1rem;
  }

  .crc-step-title {
    font-size: 1.15rem;
  }

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