/* style/blog-555win12-app-features.css */
.page-blog-555win12-app-features {
  color: #F2FFF6; /* Light text for dark body background */
  background-color: #08160F; /* Background color */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-555win12-app-features__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-555win12-app-features__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-555win12-app-features__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px; /* Ensure content area has some height */
}

.page-blog-555win12-app-features__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 90%;
}

.page-blog-555win12-app-features__hero-description {
  font-size: 1.15rem;
  color: #A7D9B8;
  margin-bottom: 30px;
  max-width: 80%;
}

.page-blog-555win12-app-features__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-555win12-app-features__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-555win12-app-features__btn-secondary {
  display: inline-block;
  background: #11271B;
  color: #2AD16F;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: background 0.3s ease, color 0.3s ease;
  border: 2px solid #2E7A4E;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-555win12-app-features__btn-secondary:hover {
  background: #2E7A4E;
  color: #F2FFF6;
}

.page-blog-555win12-app-features__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-blog-555win12-app-features__section-wrapper {
  background-color: #11271B;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-blog-555win12-app-features__section-title {
  font-size: 2.5rem;
  color: #F2C14E; /* Gold color for main titles */
  margin-bottom: 30px;
  text-align: center;
  font-weight: 700;
}

.page-blog-555win12-app-features__sub-title {
  font-size: 1.8rem;
  color: #2AD16F; /* Green for subtitles */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-555win12-app-features__paragraph {
  font-size: 1.1rem;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-blog-555win12-app-features__image-inline {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin: 30px 0;
  object-fit: cover;
}

.page-blog-555win12-app-features__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
}

.page-blog-555win12-app-features__cta-final {
  text-align: center;
  margin-top: 50px;
}

.page-blog-555win12-app-features__faq-list {
  margin-top: 30px;
}

.page-blog-555win12-app-features__faq-item {
  background-color: #0A4B2C;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-555win12-app-features__faq-item summary {
  list-style: none;
}

.page-blog-555win12-app-features__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-555win12-app-features__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2FFF6;
  background-color: #1E3A2A;
  transition: background-color 0.3s ease;
}

.page-blog-555win12-app-features__faq-question:hover {
  background-color: #2E7A4E;
}

.page-blog-555win12-app-features__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

.page-blog-555win12-app-features__faq-item[open] .page-blog-555win12-app-features__faq-toggle {
  content: '−';
}

.page-blog-555win12-app-features__faq-answer {
  padding: 20px;
  background-color: #0A4B2C;
  color: #A7D9B8;
  font-size: 1.05rem;
  border-top: 1px solid #1E3A2A;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-555win12-app-features__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-blog-555win12-app-features__hero-description {
    font-size: 1.05rem;
  }

  .page-blog-555win12-app-features__section-title {
    font-size: 2.2rem;
  }

  .page-blog-555win12-app-features__sub-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .page-blog-555win12-app-features {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-555win12-app-features__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-555win12-app-features__hero-content {
    padding: 30px 15px;
    min-height: 300px;
  }

  .page-blog-555win12-app-features__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    max-width: 100%;
  }

  .page-blog-555win12-app-features__hero-description {
    font-size: 1rem;
    max-width: 95%;
  }

  .page-blog-555win12-app-features__btn-primary,
  .page-blog-555win12-app-features__btn-secondary {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-555win12-app-features__content-area {
    padding: 30px 15px;
  }

  .page-blog-555win12-app-features__section-wrapper {
    padding: 25px;
    margin-bottom: 30px;
  }

  .page-blog-555win12-app-features__section-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .page-blog-555win12-app-features__sub-title {
    font-size: 1.4rem;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .page-blog-555win12-app-features__paragraph {
    font-size: 1rem;
  }

  .page-blog-555win12-app-features__image-inline {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-555win12-app-features__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-555win12-app-features__faq-question {
    font-size: 1.1rem;
    padding: 15px;
  }

  .page-blog-555win12-app-features__faq-answer {
    font-size: 0.95rem;
    padding: 15px;
  }
  
  .page-blog-555win12-app-features__hero-image {
    filter: brightness(0.4); /* Darken more for mobile */
  }
}

@media (max-width: 480px) {
  .page-blog-555win12-app-features__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-blog-555win12-app-features__hero-description {
    font-size: 0.95rem;
  }

  .page-blog-555win12-app-features__section-title {
    font-size: 1.6rem;
  }

  .page-blog-555win12-app-features__sub-title {
    font-size: 1.2rem;
  }

  .page-blog-555win12-app-features__btn-primary,
  .page-blog-555win12-app-features__btn-secondary {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}