.page-resources-official-entrance-guide {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  line-height: 1.6;
  background-color: #ffffff; /* Default body background */
}

.page-resources-official-entrance-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-resources-official-entrance-guide__hero-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  background-color: #f0f8ff; /* Light blue tint for hero */
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  overflow: hidden; /* For image positioning */
}

.page-resources-official-entrance-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3; /* Subtle background image */
}

.page-resources-official-entrance-guide__main-title {
  font-size: 3.2em;
  color: #26A9E0; /* Brand primary color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-official-entrance-guide__intro-text {
  font-size: 1.2em;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* CTA Buttons */
.page-resources-official-entrance-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-resources-official-entrance-guide__btn-primary,
.page-resources-official-entrance-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box; /* Important for mobile responsiveness */
  max-width: 100%; /* Ensure buttons don't overflow */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
  text-align: center;
}

.page-resources-official-entrance-guide__btn-primary {
  background-color: #26A9E0; /* Primary brand color */
  color: #ffffff; /* White text for contrast */
  border: 2px solid #26A9E0;
}