/* style/index.css */

/* --- Base Styles & Typography --- */
.page-index {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text on default light body background */
  background-color: #f8f8f8; /* Light background for overall page content */
}

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

.page-index__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #8B0000; /* Auxiliary color for titles */
  position: relative;
  padding-bottom: 10px;
}

.page-index__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Primary color for accent */
  border-radius: 2px;
}

.page-index__section-title--light {
  color: #ffffff; /* White text on dark backgrounds */
}

.page-index__section-title--light::after {
  background-color: #ffffff; /* White accent on dark backgrounds */
}

.page-index__text-block {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  line-height: 1.8;
  color: #555555;
}

.page-index__text-block--light {
  color: #e0e0e0; /* Lighter text for dark backgrounds */
}

/* --- CTA Buttons --- */
.page-index__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-index__cta-button--primary {
  background: #FFD700; /* Primary color */
  color: #ffffff;
  border: 2px solid #FFD700;
  margin: 0 10px;
}

.page-index__cta-button--primary:hover {
  background: #e6c200; /* Slightly darker primary on hover */
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index__cta-button--secondary {
  background: #8B0000; /* Auxiliary color */
  color: #ffffff;
  border: 2px solid #8B0000;
  margin: 0 10px;
}

.page-index__cta-button--secondary:hover {
  background: #6a0000; /* Slightly darker auxiliary on hover */
  border-color: #6a0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index__btn-small {
  display: inline-block;
  padding: 10px 25px;
  background: #FFD700;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  border: 2px solid #FFD700;
}

.page-index__btn-small:hover {
  background: #e6c200;
  border-color: #e6c200;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}