/* style/index.css */

/* General Styling */
.page-index {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Default body background */
  line-height: 1.6;
}

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

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

.page-index__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-index__section-title--white {
  color: #ffffff;
}

.page-index__text-block {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 17px;
  line-height: 1.8;
}

.page-index__text-block--white {
  color: #f0f0f0;
}

/* HERO Section */
.page-index__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(135deg, #26A9E0 0%, #4CAF50 100%); /* Example gradient for visual appeal, not main image */
  overflow: hidden;
}