/* style/index.css */

/* General Styles for page-index */
.page-index {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-index__heading {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #FFFFFF; /* Default heading color for dark sections */
}

.page-index__subheading {
  font-size: 28px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for subheadings in light sections */
}

.page-index__text {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.7;
}

.page-index__highlight {
  color: #26A9E0;
  font-weight: bold;
}

.page-index a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index a:hover {
  color: #EA7C07; /* Login color for hover effect */
}

/* Buttons */
.page-index__btn-primary,
.page-index__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

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

.page-index__btn-primary:hover {
  background: #1e87c0;
  border-color: #1e87c0;
}

.page-index__btn-secondary {
  background: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-index__btn-secondary:hover {
  background: #26A9E0;
  color: #ffffff;
}