:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A1A1A; /* Dark Black */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f8f9fa;
  --bg-dark: var(--secondary-color);
  --border-color: #e0e0e0;
}

/* General page styling */
.page-mobile-app-features {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for the main section, assuming body is dark */
  background-color: var(--bg-dark); /* This should match shared.css body background if it's dark */
}

/* Ensure default text in light sections is dark */
.page-mobile-app-features__light-bg {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

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

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

.page-mobile-app-features__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: inherit; /* Inherit color from parent section (dark or light bg) */
}

.page-mobile-app-features__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  color: inherit; /* Inherit color from parent section */
}

/* Hero Section */
.page-mobile-app-features__hero-section {
  position: relative;
  padding: 100px 20px 60px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  text-align: center;
  background: linear-gradient(135deg, #1A1A1A 0%, #003366 100%); /* Dark gradient */
  color: var(--text-light);
  overflow: hidden;
}

.page-mobile-app-features__main-title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-mobile-app-features__hero-description {
  font-size: 20px;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-mobile-app-features__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-mobile-app-features__cta-button {
  display: inline-block;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Ensure long words break */
  text-align: center;
}

.page-mobile-app-features__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color); /* Dark text on gold button */
  border: 2px solid var(--primary-color);
}

.page-mobile-app-features__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-mobile-app-features__btn-secondary {
  background-color: transparent;
  color: var(--primary-color); /* Gold text on dark background */
  border: 2px solid var(--primary-color);
}