/* style/user-community-expert-qa.css */
.page-user-community-expert-qa {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-user-community-expert-qa__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-user-community-expert-qa__hero {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-user-community-expert-qa__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFCC00;
  font-weight: bold;
  line-height: 1.2;
}

.page-user-community-expert-qa__hero-subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

/* CTA Button */
.page-user-community-expert-qa__cta-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-user-community-expert-qa__cta-button:hover {
  background-color: #e6b800; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-user-community-expert-qa__cta-button--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-user-community-expert-qa__cta-button--secondary:hover {
  background-color: #004d99; /* Slightly lighter blue */
  color: #fff;
  border-color: #fff;
}

/* QA Section */
.page-user-community-expert-qa__qa-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-user-community-expert-qa__qa-section--alt-bg {
  background-color: #eef4f8; /* Light blue-grey */
}

.page-user-community-expert-qa__section-title {
  font-size: 2.2em;
  color: #003366;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-user-community-expert-qa__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-user-community-expert-qa__qa-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-user-community-expert-qa__qa-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-user-community-expert-qa__question {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-user-community-expert-qa__answer {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 10px;
}

.page-user-community-expert-qa__answer-list {
  list-style-type: disc;
  margin-left: 25px;
  padding-left: 0;
  color: #555;
}

.page-user-community-expert-qa__answer-list li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-user-community-expert-qa__image-wrapper {
  text-align: center;
  margin: 30px 0;
}

.page-user-community-expert-qa__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-user-community-expert-qa__cta-block {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #003366;
  border-radius: 10px;
  color: #fff;
}

.page-user-community-expert-qa__cta-block p {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #e0e0e0;
}

/* Final CTA Section */
.page-user-community-expert-qa__final-cta {
  background: linear-gradient(45deg, #003366, #FFCC00);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-user-community-expert-qa__final-cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #fff;
}

.page-user-community-expert-qa__final-cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-user-community-expert-qa__hero-title {
    font-size: 2em;
  }
  .page-user-community-expert-qa__hero-subtitle,
  .page-user-community-expert-qa__final-cta-description {
    font-size: 1em;
  }
  .page-user-community-expert-qa__section-title {
    font-size: 1.8em;
  }
  .page-user-community-expert-qa__question {
    font-size: 1.3em;
  }
  .page-user-community-expert-qa__answer {
    font-size: 0.95em;
  }
  .page-user-community-expert-qa__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-user-community-expert-qa__qa-section,
  .page-user-community-expert-qa__hero,
  .page-user-community-expert-qa__final-cta {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-user-community-expert-qa__hero-title {
    font-size: 1.8em;
  }
  .page-user-community-expert-qa__section-title {
    font-size: 1.6em;
  }
  .page-user-community-expert-qa__question {
    font-size: 1.2em;
  }
  .page-user-community-expert-qa__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-user-community-expert-qa__qa-item {
    padding: 20px;
  }
}