.page-register {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333; /* Default dark text for light body background */
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-register__section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.page-register__section:last-of-type {
  border-bottom: none;
}

.page-register__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-register__section-title {
  font-size: 38px;
  font-weight: 700;
  color: #8B0000; /* Auxiliary color for titles */
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-register__section-intro {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

/* Hero Section */
.page-register__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background: linear-gradient(135deg, #FFD700, #8B0000); /* Brand colors for background */
  color: #ffffff; /* White text for dark/brand background */
  overflow: hidden;
}

.page-register__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-register__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-register__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-register__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-register__hero-title {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  color: #ffffff; /* White text for contrast */
}

.page-register__hero-description {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.5;
  color: #f0f0f0;
}

.page-register__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700; /* Primary brand color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-register__cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* General Buttons */
.page-register__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: #FFD700;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  box-sizing: border-box;
}

.page-register__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-1px);
}

.page-register__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  background: #ffffff;
  color: #8B0000; /* Auxiliary color */
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #8B0000;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.page-register__btn-secondary:hover {
  background: #f0f0f0;
  color: #6a0000;
  transform: translateY(-1px);
}

/* Why Register Section */
.page-register__why-register {
  background-color: #fdfdfd;
}

.page-register__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-register__feature-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}