:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #0A2463; /* Dark Blue */
  --accent-color-red: #E74C3C; /* Red for emphasis */
  --accent-color-green: #27AE60; /* Green for success */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f8f8;
  --border-color: #e0e0e0;
}

.page-index-register-uw88 {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff; /* Default background for main content */
}

/* HERO Section */
.page-index-register-uw88-hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--secondary-color); /* Dark blue background for contrast with gold elements */
  color: var(--text-light);
  overflow: hidden; /* Ensure content doesn't spill */
}

.page-index-register-uw88-hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1; /* Ensure content is above any background effects */
}

.page-index-register-uw88-hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index-register-uw88-hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  filter: none; /* Ensure no image filters are applied */
}

.page-index-register-uw88-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
  margin-top: -80px; /* Overlap with image slightly for visual appeal */
}

.page-index-register-uw88-hero-content h1 {
  font-size: 3.5em;
  color: var(--primary-color); /* Gold text on dark background */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-register-uw88-hero-content p {
  font-size: 1.3em;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-register-uw88-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color); /* Gold button */
  color: var(--secondary-color); /* Dark blue text on gold button */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-index-register-uw88-cta-button:hover {
  background: #FFC107; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-register-uw88-cta-button.small-button {
  padding: 10px 25px;
  font-size: 1em;
  margin-top: 15px;
}

/* General Section Styling */
.page-index-register-uw88-section {
  padding: 60px 20px;
  text-align: center;
}

.page-index-register-uw88-section:nth-of-type(even) {
  background-color: var(--bg-light); /* Light background for alternating sections */
}

.page-index-register-uw88-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-index-register-uw88-section h2 {
  font-size: 2.5em;
  color: var(--secondary-color); /* Dark blue headings */
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-register-uw88-section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color); /* Gold underline */
  border-radius: 2px;
}

.page-index-register-uw88-section h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-index-register-uw88-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: var(--text-dark);
}