/* style/index-registration-process.css */

/* Core Styles for the page */
.page-index-registration-process {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #f8f8f8; /* Light background for the page content */
}

.page-index-registration-process__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-index-registration-process__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-registration-process__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #0A1931;
  margin-bottom: 20px;
  text-align: center;
}

.page-index-registration-process__section-description {
  font-size: 18px;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 40px auto;
  text-align: center;
}

/* HERO Section */
.page-index-registration-process__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 spacing */
  background-color: #0A1931; /* Dark background for hero */
  color: #ffffff; /* Light text for dark background */
}

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

.page-index-registration-process__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-registration-process__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

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

.page-index-registration-process__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700; /* Gold for title */
}

.page-index-registration-process__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

/* CTA Button Styles */
.page-index-registration-process__cta-button,
.page-index-registration-process__btn-primary,
.page-index-registration-process__btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Gold button */
  color: #0A1931; /* Dark blue text for gold button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box; /* Ensure padding is included in width */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-index-registration-process__cta-button:hover,
.page-index-registration-process__btn-primary:hover,
.page-index-registration-process__btn-secondary:hover {
  background: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-registration-process__btn-primary {
  background: #FFD700;
  color: #0A1931;
  border: none;
}

.page-index-registration-process__btn-secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-index-registration-process__btn-secondary:hover {
  background: #FFD700;
  color: #0A1931;
}

.page-index-registration-process__btn-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.page-index-registration-process__btn-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-index-registration-process__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-index-registration-process__button-center {
    margin-top: 40px;
    text-align: center;
}


/* Why Register Section */
.page-index-registration-process__why-register {
  background-color: #ffffff;
  color: #333333;
}

.page-index-registration-process__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}