/* style/index.css */

/* --- General Page Styles --- */
.page-index {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background: #FFFFFF; /* Explicitly set for content area */
}

.page-index__section {
  padding: 60px 20px;
  text-align: center;
}

.page-index__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #26A9E0; /* Brand color for titles */
  margin-bottom: 20px;
  text-transform: uppercase;
}

.page-index__section-description {
  font-size: 18px;
  color: #555555;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-index__paragraph {
  font-size: 16px;
  color: #333333;
  max-width: 900px;
  margin: 0 auto 20px auto;
  text-align: left;
}

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

/* --- Color Contrast Classes --- */
.page-index__dark-bg {
  background: #26A9E0; /* Brand primary color */
  color: #ffffff; /* White text for dark background */
}

.page-index__light-bg {
  background: #ffffff; /* White background */
  color: #333333; /* Dark text for light background */
}

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

.page-index__cta-buttons--center {
  justify-content: center;
}

.page-index__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure button adapts to width */
  box-sizing: border-box;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
}

.page-index__btn-primary {
  background: #26A9E0; /* Brand primary color */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-index__btn-primary:hover {
  background: #1e87b8; /* Slightly darker primary */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-index__btn-secondary {
  background: #EA7C07; /* Login color */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-index__btn-secondary:hover {
  background: #c26705; /* Slightly darker secondary */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* --- Video Area --- */
.page-index__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background: #000000; /* Dark background for video section */
}