/* style/register.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-register {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: #000000; /* Ensure body is dark */
}

/* Fixed header offset - applies to the first content section */
.page-register__hero-section {
  padding-top: var(--header-offset, 120px);
  position: relative;
  overflow: hidden;
}

/* General container for content sections */
.page-register__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Section titles */
.page-register__section-title {
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Section introductory paragraphs */
.page-register__section-intro {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Hero Section */
.page-register__hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background-color: #000000;
  position: relative;
  padding-bottom: 60px;
}