/* style/index.css */

/* General page styling */
.page-index {
  background-color: #121212; /* Matches body background for consistency */
  color: #ffffff; /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

/* Common section styling */
.page-index__section {
  padding: 60px 20px;
  text-align: center;
  box-sizing: border-box;
}

.page-index__dark-bg {
  background-color: #1a1a1a; /* Slightly lighter dark for contrast */
  color: #ffffff;
}

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

.page-index__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #26A9E0; /* Primary brand color for titles */
}

/* CTA Buttons */
.page-index__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #EA7C07; /* Login color for CTA */
  color: #ffffff;
  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;
  margin: 10px;
}

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

.page-index__cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}