/* style/index-app-features.css */

:root {
  --page-primary-color: #26A9E0;
  --page-secondary-color: #FFFFFF;
  --page-text-color: #333333;
  --page-dark-text-color: #000000;
  --page-light-text-color: #FFFFFF;
  --page-background-color: #FFFFFF;
  --page-login-color: #EA7C07;
}

.page-index-app-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--page-text-color);
  background-color: var(--page-background-color);
}

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

/* Hero Section */
.page-index-app-features__hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--page-primary-color), #1a7fb3); /* Gradient with brand color */
  color: var(--page-light-text-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-app-features__hero-content {
  max-width: 700px;
  z-index: 1;
  position: relative;
}

.page-index-app-features__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--page-light-text-color);
}

.page-index-app-features__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: var(--page-light-text-color);
}