/* style/index.css */

/* Base styles for page-index */
.page-index {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #f0f2f5; /* Consistent with body background type */
}

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

/* Section spacing */
.page-index section {
  padding: 60px 0;
}

.page-index__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-index__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

/* Headings */
.page-index h1,
.page-index h2,
.page-index h3 {
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-index__dark-bg h1,
.page-index__dark-bg h2,
.page-index__dark-bg h3 {
  color: #ffffff;
}

.page-index h2 {
  font-size: 36px;
  text-align: center;
}

.page-index h3 {
  font-size: 24px;
}

.page-index p {
  margin-bottom: 15px;
}

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