/* style/app-reviews-betting-platform-features.css */

/* Base styles for the page content */
.page-app-reviews-betting-platform-features {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css (#121212) */
}

/* Header offset for fixed header */
.page-app-reviews-betting-platform-features__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

/* Container for content */
.page-app-reviews-betting-platform-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Section styling */
.page-app-reviews-betting-platform-features__section-title {
  font-size: 2.5em;
  color: #ffffff; /* Default for dark sections */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-app-reviews-betting-platform-features__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #017439;
  border-radius: 2px;
}

.page-app-reviews-betting-platform-features__section-intro {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0; /* Slightly lighter for intro text */
}

/* Color contrast handling */
.page-app-reviews-betting-platform-features__dark-bg {
  background-color: #121212; /* Matches body background */
  color: #ffffff;
}

.page-app-reviews-betting-platform-features__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-app-reviews-betting-platform-features__light-bg .page-app-reviews-betting-platform-features__section-title {
  color: #333333; /* Dark title on light background */
}

.page-app-reviews-betting-platform-features__light-bg .page-app-reviews-betting-platform-features__section-intro {
  color: #555555; /* Darker intro text on light background */
}

/* Hero Section */
.page-app-reviews-betting-platform-features__hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 80px 0;
  background: linear-gradient(135deg, #017439, #0a3d21); /* Darker green gradient for hero */
  color: #ffffff;
  min-height: 500px;
}

.page-app-reviews-betting-platform-features__hero-section .page-app-reviews-betting-platform-features__container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-app-reviews-betting-platform-features__hero-content {
  flex: 1;
}

.page-app-reviews-betting-platform-features__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-app-reviews-betting-platform-features__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}