/* style/index-platform-features.css */
/* 
  Body background color: #08160F (dark)
  Text Main: #F2FFF6 (light)
  Text Secondary: #A7D9B8 (light)
  Card BG: #11271B (dark)
  Button: linear-gradient(180deg, #2AD16F 0%, #13994A 100%)
  Border: #2E7A4E
  Glow: #57E38D
  Gold: #F2C14E
  Divider: #1E3A2A
  Deep Green: #0A4B2C
*/

/* Custom properties for colors (defined here for explicit use within this component, though shared.css might also define them) */
:root {
  --main-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-index-platform-features {
  font-family: Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--background);
}

/* Base container styling */
.page-index-platform-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Section styling */
.page-index-platform-features__hero-section,
.page-index-platform-features__introduction-section,
.page-index-platform-features__features-section,
.page-index-platform-features__advantages-section,
.page-index-platform-features__guide-section,
.page-index-platform-features__faq-section,
.page-index-platform-features__cta-bottom-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
}