/* style/index-app-features.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --button-login: #EA7C07;
}

.page-index-app-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--secondary-color); /* Body background is white, so text is dark */
}

.page-index-app-features__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
  color: var(--text-light);
}

.page-index-app-features__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-index-app-features__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}

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

.page-index-app-features__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-index-app-features__hero-image {
  width: 100%;
  max-width: 800px; /* Adjust max-width for image in hero */
}

.page-index-app-features__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-index-app-features__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-login); /* Use custom login color for primary CTA */
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-app-features__cta-button:hover {
  background: #d46f06; /* Darken login color */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-app-features__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-index-app-features__heading {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-index-app-features__heading--white {
  color: var(--text-light);
}

.page-index-app-features__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-dark);
}

.page-index-app-features__paragraph--white {
  color: var(--text-light);
}

.page-index-app-features__paragraph--center {
  text-align: center;
}

.page-index-app-features__keyword {
  font-weight: bold;
  color: var(--primary-color);
}

.page-index-app-features__link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-index-app-features__link:hover {
  text-decoration: underline;
}

.page-index-app-features__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-index-app-features__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-index-app-features__card {
  background: var(--secondary-color);
  color: var(--text-dark);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.page-index-app-features__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Feature Grid */
.page-index-app-features__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-app-features__feature-image {
  width: 100%;
  height: 250px; /* Fixed height for feature images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-index-app-features__feature-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-index-app-features__feature-description {
  font-size: 1em;
  color: var(--text-dark);
}

/* Download Guide */
.page-index-app-features__download-guide {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-index-app-features__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-app-features__step-item {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.page-index-app-features__step-title {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-index-app-features__step-description {
  font-size: 0.95em;
  color: var(--text-dark);
}

.page-index-app-features__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid transparent;
}

.page-index-app-features__btn-primary:hover {
  background: #208cb9; /* Darken primary color */
  transform: translateY(-2px);
}

.page-index-app-features__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid var(--primary-color);
}

.page-index-app-features__btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* Benefits */
.page-index-app-features__benefits {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-index-app-features__benefit-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-app-features__benefit-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-index-app-features__benefit-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: var(--text-light);
}

/* Security Section */
.page-index-app-features__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}