/* style/blog-taya365-mobile-app-guide.css */

.page-blog-taya365-mobile-app-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Main text color for dark background */
  background-color: transparent; /* Body background from shared.css */
}

.page-blog-taya365-mobile-app-guide__hero-section {
  padding-top: var(--header-offset, 120px); /* Fixed header spacing */
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  color: #0A0A0A; /* Dark text for light gradient background */
  text-align: center;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.page-blog-taya365-mobile-app-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-blog-taya365-mobile-app-guide__hero-image-wrapper {
  margin-bottom: 30px;
}

.page-blog-taya365-mobile-app-guide__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-taya365-mobile-app-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #0A0A0A; /* Dark text for light gradient background */
  line-height: 1.2;
}

.page-blog-taya365-mobile-app-guide__hero-description {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #333333; /* Darker text for readability on light background */
}

.page-blog-taya365-mobile-app-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.page-blog-taya365-mobile-app-guide__btn-primary,
.page-blog-taya365-mobile-app-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-taya365-mobile-app-guide__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff; /* White text for primary button */
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-taya365-mobile-app-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-taya365-mobile-app-guide__btn-secondary {
  background: #111111; /* Card BG color */
  color: #F2C14E; /* Main brand color for secondary button text */
  border: 2px solid #F2C14E;
}

.page-blog-taya365-mobile-app-guide__btn-secondary:hover {
  background: #F2C14E;
  color: #0A0A0A;
  border-color: #F2C14E;
  transform: translateY(-3px);
}

.page-blog-taya365-mobile-app-guide__cta-buttons--bottom {
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-blog-taya365-mobile-app-guide__content-area {
  padding: 50px 0;
}

.page-blog-taya365-mobile-app-guide__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #F2C14E; /* Brand color for section titles */
  margin-bottom: 30px;
  text-align: center;
}

.page-blog-taya365-mobile-app-guide__sub-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #FFD36B; /* Accent color for sub-section titles */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-blog-taya365-mobile-app-guide__paragraph {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #FFF6D6; /* Main text color */
}

.page-blog-taya365-mobile-app-guide__features-list,
.page-blog-taya365-mobile-app-guide__guide-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-taya365-mobile-app-guide__features-list .page-blog-taya365-mobile-app-guide__feature-item {
  background-color: #111111; /* Card BG */
  border-left: 5px solid #F2C14E;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #FFF6D6;
  font-size: 1.05rem;
}

.page-blog-taya365-mobile-app-guide__features-list .page-blog-taya365-mobile-app-guide__feature-item strong {
  color: #FFD36B;
}

.page-blog-taya365-mobile-app-guide__guide-list .page-blog-taya365-mobile-app-guide__guide-item {
  background-color: #111111;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #FFF6D6;
  font-size: 1.05rem;
  counter-increment: step-counter;
  position: relative;
  padding-left: 45px;
}

.page-blog-taya365-mobile-app-guide__guide-list .page-blog-taya365-mobile-app-guide__guide-item::before {
  content: counter(step-counter);
  position: absolute;
  left: 15px;
  top: 15px;
  background-color: #F2C14E;
  color: #0A0A0A;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.page-blog-taya365-mobile-app-guide__image-block {
  margin: 40px auto;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 900px;
}

.page-blog-taya365-mobile-app-guide__content-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-blog-taya365-mobile-app-guide__faq-list {
  margin-top: 40px;
  margin-bottom: 50px;
}

.page-blog-taya365-mobile-app-guide__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-taya365-mobile-app-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  color: #F2C14E; /* Brand color for FAQ questions */
  background-color: #1a1a1a;
  transition: background-color 0.3s ease;
}

.page-blog-taya365-mobile-app-guide__faq-question:hover {
  background-color: #222222;
}

.page-blog-taya365-mobile-app-guide__faq-title {
  margin: 0;
  font-size: 1.1rem;
  color: inherit;
}

.page-blog-taya365-mobile-app-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FFD36B;
}

.page-blog-taya365-mobile-app-guide__faq-item.active .page-blog-taya365-mobile-app-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-taya365-mobile-app-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6;
  background-color: #111111;
}

.page-blog-taya365-mobile-app-guide__faq-item.active .page-blog-taya365-mobile-app-guide__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-blog-taya365-mobile-app-guide__faq-answer .page-blog-taya365-mobile-app-guide__paragraph {
  margin-bottom: 0;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-taya365-mobile-app-guide__hero-section {
    padding-top: var(--header-offset, 100px) !important; /* Mobile fixed header spacing */
    padding-bottom: 30px;
  }

  .page-blog-taya365-mobile-app-guide__main-title {
    font-size: 2.2rem;
  }

  .page-blog-taya365-mobile-app-guide__hero-description {
    font-size: 1rem;
  }

  .page-blog-taya365-mobile-app-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-blog-taya365-mobile-app-guide__btn-primary,
  .page-blog-taya365-mobile-app-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-taya365-mobile-app-guide__content-area {
    padding: 30px 0;
  }

  .page-blog-taya365-mobile-app-guide__section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .page-blog-taya365-mobile-app-guide__sub-section-title {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-blog-taya365-mobile-app-guide__paragraph,
  .page-blog-taya365-mobile-app-guide__features-list .page-blog-taya365-mobile-app-guide__feature-item,
  .page-blog-taya365-mobile-app-guide__guide-list .page-blog-taya365-mobile-app-guide__guide-item {
    font-size: 0.95rem;
  }

  .page-blog-taya365-mobile-app-guide__image-block {
    margin: 20px auto;
    padding: 0 15px;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .page-blog-taya365-mobile-app-guide__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-taya365-mobile-app-guide__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-taya365-mobile-app-guide__faq-answer {
    padding: 10px 20px;
  }

  .page-blog-taya365-mobile-app-guide__faq-answer .page-blog-taya365-mobile-app-guide__paragraph {
    font-size: 0.9rem;
  }

  .page-blog-taya365-mobile-app-guide__container {
    padding: 0 15px;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-blog-taya365-mobile-app-guide__main-title {
    font-size: 1.8rem;
  }

  .page-blog-taya365-mobile-app-guide__section-title {
    font-size: 1.6rem;
  }

  .page-blog-taya365-mobile-app-guide__sub-section-title {
    font-size: 1.3rem;
  }
}