/* style/blog-deep-dive-f16878-app-features.css */

/* Custom Colors */
:root {
  --color-primary: #11A84E;
  --color-secondary: #22C768;
  --color-btn-gradient-start: #2AD16F;
  --color-btn-gradient-end: #13994A;
  --color-card-bg: #11271B;
  --color-background: #08160F;
  --color-text-main: #F2FFF6;
  --color-text-secondary: #A7D9B8;
  --color-border: #2E7A4E;
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;
}

.page-blog-deep-dive-f16878-app-features {
  background-color: var(--color-background); /* #08160F - Dark background */
  color: var(--color-text-main); /* #F2FFF6 - Light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-deep-dive-f16878-app-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-blog-deep-dive-f16878-app-features__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: var(--color-deep-green);
}

.page-blog-deep-dive-f16878-app-features__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-deep-dive-f16878-app-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-deep-dive-f16878-app-features__hero-content-wrapper {
  text-align: center;
  padding: 40px 0;
  max-width: 900px;
}

.page-blog-deep-dive-f16878-app-features__main-title {
  color: var(--color-text-main);
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 font size */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-deep-dive-f16878-app-features__description {
  color: var(--color-text-secondary);
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-deep-dive-f16878-app-features__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-deep-dive-f16878-app-features__btn-primary,
.page-blog-deep-dive-f16878-app-features__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-blog-deep-dive-f16878-app-features__btn-primary {
  background: linear-gradient(180deg, var(--color-btn-gradient-start) 0%, var(--color-btn-gradient-end) 100%);
  color: var(--color-text-main);
  border: 2px solid transparent;
}

.page-blog-deep-dive-f16878-app-features__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-deep-dive-f16878-app-features__btn-secondary {
  background-color: transparent;
  color: var(--color-btn-gradient-start);
  border: 2px solid var(--color-btn-gradient-start);
}

.page-blog-deep-dive-f16878-app-features__btn-secondary:hover {
  background-color: var(--color-btn-gradient-start);
  color: var(--color-text-main);
}

/* General Section Styling */
.page-blog-deep-dive-f16878-app-features__introduction-section,
.page-blog-deep-dive-f16878-app-features__features-section,
.page-blog-deep-dive-f16878-app-features__advantages-section,
.page-blog-deep-dive-f16878-app-features__get-started-section,
.page-blog-deep-dive-f16878-app-features__faq-section,
.page-blog-deep-dive-f16878-app-features__conclusion-section {
  padding: 60px 0;
  background-color: var(--color-background);
}

.page-blog-deep-dive-f16878-app-features__section-title {
  color: var(--color-text-main);
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-blog-deep-dive-f16878-app-features__text-block {
  color: var(--color-text-secondary);
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-deep-dive-f16878-app-features__text-block strong,
.page-blog-deep-dive-f16878-app-features__text-block em {
  color: var(--color-text-main);
}

.page-blog-deep-dive-f16878-app-features__text-block a {
  color: var(--color-btn-gradient-start);
  text-decoration: underline;
}

.page-blog-deep-dive-f16878-app-features__text-block a:hover {
  color: var(--color-glow);
}

/* Features Grid */
.page-blog-deep-dive-f16878-app-features__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-blog-deep-dive-f16878-app-features__feature-card {
  background-color: var(--color-card-bg); /* #11271B */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--color-border);
}

.page-blog-deep-dive-f16878-app-features__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-blog-deep-dive-f16878-app-features__feature-title {
  color: var(--color-gold);
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-deep-dive-f16878-app-features__feature-description {
  color: var(--color-text-secondary);
  font-size: 1em;
  flex-grow: 1;
  text-align: justify;
}

/* Advantages Section */
.page-blog-deep-dive-f16878-app-features__advantage-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-blog-deep-dive-f16878-app-features__advantage-item {
  background-color: var(--color-card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid var(--color-border);
}

.page-blog-deep-dive-f16878-app-features__advantage-icon {
  width: 100px; /* Display size */
  height: 100px; /* Display size */
  margin-bottom: 20px;
  object-fit: contain;
  min-width: 200px; /* Enforce min size for image generation */
  min-height: 200px; /* Enforce min size for image generation */
}

.page-blog-deep-dive-f16878-app-features__advantage-title {
  color: var(--color-text-main);
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-deep-dive-f16878-app-features__advantage-description {
  color: var(--color-text-secondary);
  font-size: 0.95em;
}

/* Get Started Section */
.page-blog-deep-dive-f16878-app-features__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}