/* style/index.css */

/* General styles for the page-index scope */
.page-index {
  font-family: 'Arial', sans-serif;
  color: var(--text-main-color, #1F2D3D); /* Default text color */
  background-color: var(--bg-primary-color, #F4F7FB); /* Default background color */
  line-height: 1.6;
}

.page-index__section-padding {
  padding: 80px 0;
}

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

.page-index__section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-main-color, #1F2D3D);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

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

.page-index__section-description {
  font-size: 18px;
  color: var(--text-main-color, #1F2D3D);
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__section-description--light {
  color: #f0f0f0;
}

.page-index__button-center {
  text-align: center;
  margin-top: 40px;
}

/* Custom Colors from Requirements */
:root {
  --primary-color: #2F6BFF;
  --secondary-color: #6FA3FF;
  --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  --card-bg-color: #FFFFFF;
  --bg-primary-color: #F4F7FB;
  --text-main-color: #1F2D3D;
  --border-color: #D6E2FF;
  --glow-color: #A5C4FF;
}

/* CTA Button Styles */
.page-index__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
  border: none;
}

.page-index__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-index__cta-button--secondary {
  background: #ffffff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}