.page-blog-ku3936-login-faq {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background);
}

.page-blog-ku3936-login-faq__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  overflow: hidden;
  background: var(--background);
}

.page-blog-ku3936-login-faq__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-ku3936-login-faq__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-ku3936-login-faq__hero-content {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: center;
  padding: 0 20px;
  color: var(--text-main);
}

.page-blog-ku3936-login-faq__main-title {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main);
  max-width: 100%;
}

.page-blog-ku3936-login-faq__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-blog-ku3936-login-faq__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-blog-ku3936-login-faq__btn-primary,
.page-blog-ku3936-login-faq__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-ku3936-login-faq__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main);
  border: 2px solid transparent;
}

.page-blog-ku3936-login-faq__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-ku3936-login-faq__btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--border);
}

.page-blog-ku3936-login-faq__btn-secondary:hover {
  background: rgba(var(--border-rgb), 0.2);
  transform: translateY(-2px);
}

.page-blog-ku3936-login-faq__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--background);
  color: var(--text-main);
}

.page-blog-ku3936-login-faq__section-title {
  font-size: 2.2em;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: var(--text-main);
}

.page-blog-ku3936-login-faq__paragraph {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: var(--text-secondary);
}

.page-blog-ku3936-login-faq__faq-list {
  margin-top: 40px;
}

.page-blog-ku3936-login-faq__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-blog-ku3936-login-faq__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  background-color: var(--card-bg);
  color: var(--text-main);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-blog-ku3936-login-faq__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-ku3936-login-faq__faq-question:hover {
  background-color: rgba(var(--border-rgb), 0.2);
}

.page-blog-ku3936-login-faq__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--text-main);
}

.page-blog-ku3936-login-faq__faq-answer {
  padding: 0 25px 18px;
  font-size: 1em;
  color: var(--text-secondary);
}

.page-blog-ku3936-login-faq__faq-item[open] .page-blog-ku3936-login-faq__faq-question {
  background-color: rgba(var(--border-rgb), 0.1);
}

.page-blog-ku3936-login-faq__cta-section {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 50px 30px;
  text-align: center;
  margin-top: 60px;
  border: 1px solid var(--border);
}

.page-blog-ku3936-login-faq__cta-title {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-main);
}

.page-blog-ku3936-login-faq__cta-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-blog-ku3936-login-faq__related-articles {
  margin-top: 80px;
  text-align: center;
}

.page-blog-ku3936-login-faq__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-ku3936-login-faq__article-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-ku3936-login-faq__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-blog-ku3936-login-faq__article-image {
  width: 100%;
  height: 225px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-blog-ku3936-login-faq__article-title {
  font-size: 1.3em;
  font-weight: bold;
  padding: 15px 20px 0;
  color: var(--text-main);
}

.page-blog-ku3936-login-faq__article-title a {
  color: var(--text-main);
  text-decoration: none;
}

.page-blog-ku3936-login-faq__article-title a:hover {
  color: var(--primary-color);
}

.page-blog-ku3936-login-faq__article-meta {
  font-size: 0.9em;
  color: var(--text-secondary);
  padding: 5px 20px;
}

.page-blog-ku3936-login-faq__article-excerpt {
  font-size: 0.95em;
  color: var(--text-secondary);
  padding: 10px 20px 20px;
}

/* Variables for colors */
:root {
  --primary-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;
  
  /* RGB values for rgba usage */
  --primary-color-rgb: 17, 168, 78;
  --secondary-color-rgb: 34, 199, 104;
  --border-rgb: 46, 122, 78;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-ku3936-login-faq__hero-content {
    margin-top: 20px;
  }
  .page-blog-ku3936-login-faq__main-title {
    font-size: 2.5em;
  }
  .page-blog-ku3936-login-faq__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-ku3936-login-faq__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-blog-ku3936-login-faq__hero-image-wrapper {
    max-height: 400px;
  }
  .page-blog-ku3936-login-faq__main-title {
    font-size: 1.8em;
    padding: 0 15px;
  }
  .page-blog-ku3936-login-faq__hero-description {
    font-size: 1em;
    padding: 0 15px;
  }
  .page-blog-ku3936-login-faq__content-area {
    padding: 40px 15px;
  }
  .page-blog-ku3936-login-faq__section-title {
    font-size: 1.8em;
  }
  .page-blog-ku3936-login-faq__paragraph {
    font-size: 0.95em;
  }
  .page-blog-ku3936-login-faq__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-blog-ku3936-login-faq__faq-answer {
    padding: 0 20px 15px;
  }
  .page-blog-ku3936-login-faq__cta-section {
    padding: 40px 20px;
  }
  .page-blog-ku3936-login-faq__cta-title {
    font-size: 1.8em;
  }
  .page-blog-ku3936-login-faq__cta-description {
    font-size: 1em;
  }
  .page-blog-ku3936-login-faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-ku3936-login-faq__btn-primary,
  .page-blog-ku3936-login-faq__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-ku3936-login-faq__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-ku3936-login-faq img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-ku3936-login-faq__section,
  .page-blog-ku3936-login-faq__card,
  .page-blog-ku3936-login-faq__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-ku3936-login-faq__hero-section {
    padding-top: 10px !important; 
  }
  .page-blog-ku3936-login-faq__article-image {
    height: auto; /* Allow height to adjust on mobile */
  }
}