/* style/expert-qa.css */
.page-expert-qa {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-expert-qa__hero-section {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-expert-qa__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  transform: rotate(45deg);
  opacity: 0.3;
}

.page-expert-qa__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-expert-qa__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-expert-qa__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-expert-qa__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-expert-qa__btn--primary {
  background-color: #FFC107;
  color: #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-expert-qa__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.page-expert-qa__btn--secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid #fff;
}

.page-expert-qa__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.page-expert-qa__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-expert-qa__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-expert-qa__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-expert-qa__section-description {
  text-align: center;
  font-size: 1.1em;
  color: #555;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.page-expert-qa__introduction-section,
.page-expert-qa__how-it-works-section,
.page-expert-qa__expert-team-section,
.page-expert-qa__faq-categories-section,
.page-expert-qa__detail-pages-section,
.page-expert-qa__responsible-gambling-section,
.page-expert-qa__cta-section {
  padding: 80px 0;
}

.page-expert-qa__introduction-section {
  background-color: #fff;
}

.page-expert-qa__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-expert-qa__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-expert-qa__text-content {
  flex: 1;
}

.page-expert-qa__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.page-expert-qa__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-expert-qa__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-expert-qa__image--center {
  display: block;
  margin: 60px auto 0 auto;
  max-width: 800px;
}

.page-expert-qa__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-expert-qa__step-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #007BFF;
}

.page-expert-qa__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-expert-qa__step-title {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-expert-qa__step-card p {
  color: #666;
}

.page-expert-qa__expert-team-section {
  background-color: #f0f6ff;
}

.page-expert-qa__expert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-expert-qa__expert-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-expert-qa__expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-expert-qa__expert-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #FFC107;
}

.page-expert-qa__expert-name {
  font-size: 1.8em;
  color: #007BFF;
  margin-bottom: 5px;
}

.page-expert-qa__expert-role {
  font-size: 1.1em;
  color: #FFC107;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-expert-qa__expert-bio {
  color: #666;
  font-size: 0.95em;
}

.page-expert-qa__expert-cta {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
}

.page-expert-qa__expert-cta a {
  color: #007BFF;
  text-decoration: none;
  font-weight: 600;
}

.page-expert-qa__expert-cta a:hover {
  text-decoration: underline;
}

.page-expert-qa__faq-categories-section {
  background-color: #fff;
}

.page-expert-qa__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-expert-qa__category-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #FFC107;
}

.page-expert-qa__category-title {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 20px;
}

.page-expert-qa__category-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-expert-qa__category-card li {
  margin-bottom: 10px;
}

.page-expert-qa__category-card li a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-expert-qa__category-card li a:hover {
  color: #007BFF;
  text-decoration: underline;
}

.page-expert-qa__detail-pages-section {
  background-color: #f0f6ff;
}

.page-expert-qa__detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-expert-qa__detail-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 5px solid #007BFF;
}

.page-expert-qa__detail-card-title {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-expert-qa__detail-card-title a {
  color: #007BFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-expert-qa__detail-card-title a:hover {
  text-decoration: underline;
}

.page-expert-qa__detail-card-description {
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-expert-qa__responsible-gambling-section {
  background-color: #fff;
}

.page-expert-qa__cta-section {
  background-color: #007BFF;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-expert-qa__cta-section .page-expert-qa__section-title {
  color: #fff;
}

.page-expert-qa__cta-section .page-expert-qa__section-title::after {
  background-color: #FFC107;
}

.page-expert-qa__cta-section .page-expert-qa__section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-expert-qa__cta-subtext {
  margin-top: 30px;
  font-size: 1.1em;
}

.page-expert-qa__cta-subtext a {
  color: #FFC107;
  text-decoration: none;
  font-weight: 600;
}

.page-expert-qa__cta-subtext a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-expert-qa__hero-title {
    font-size: 2.8em;
  }
  .page-expert-qa__hero-subtitle {
    font-size: 1.1em;
  }
  .page-expert-qa__section-title {
    font-size: 2em;
  }
  .page-expert-qa__content-wrapper {
    flex-direction: column;
  }
  .page-expert-qa__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-expert-qa__image-wrapper {
    margin-top: 30px;
  }
  .page-expert-qa__expert-card {
    padding: 25px;
  }
  .page-expert-qa__expert-name {
    font-size: 1.6em;
  }
  .page-expert-qa__expert-role {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-expert-qa__hero-section {
    padding: 80px 0;
  }
  .page-expert-qa__hero-title {
    font-size: 2.2em;
  }
  .page-expert-qa__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-expert-qa__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-expert-qa__section-title {
    font-size: 1.8em;
  }
  .page-expert-qa__introduction-section,
  .page-expert-qa__how-it-works-section,
  .page-expert-qa__expert-team-section,
  .page-expert-qa__faq-categories-section,
  .page-expert-qa__detail-pages-section,
  .page-expert-qa__responsible-gambling-section,
  .page-expert-qa__cta-section {
    padding: 60px 0;
  }
  .page-expert-qa__section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .page-expert-qa__hero-section {
    padding: 60px 0;
  }
  .page-expert-qa__hero-title {
    font-size: 1.8em;
  }
  .page-expert-qa__hero-subtitle {
    font-size: 0.95em;
  }
  .page-expert-qa__btn {
    font-size: 1em;
    padding: 12px 25px;
    width: 90%;
  }
  .page-expert-qa__section-title {
    font-size: 1.5em;
  }
  .page-expert-qa__step-card, .page-expert-qa__expert-card, .page-expert-qa__category-card, .page-expert-qa__detail-card {
    padding: 20px;
  }
  .page-expert-qa__expert-avatar {
    width: 100px;
    height: 100px;
  }
  .page-expert-qa__expert-name {
    font-size: 1.4em;
  }
}