/* style/index.css */

/* Custom properties for colors from shared.css */
:root {
  --primary-color: #26A9E0; /* Main brand color */
  --secondary-color: #FFFFFF; /* Auxiliary color, also body background */
  --login-color: #EA7C07; /* Specific color for login */
  --black-color: #000000;
  --dark-text-color: #333333; /* For light backgrounds */
  --light-text-color: #ffffff; /* For dark backgrounds */
  --border-color: #e0e0e0;
  --light-gray-bg: #f9f9f9;
}

/* Global page styles for content area */
.page-index {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-text-color); /* Default text color for light body background */
  background: var(--secondary-color); /* Body background is white */
}

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

.page-index__section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index__section-description {
  font-size: 18px;
  color: var(--dark-text-color);
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}