/* style/expert-qa-expert-profiles.css */
.page-expert-qa-expert-profiles {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-expert-qa-expert-profiles__hero-section {
  background: linear-gradient(135deg, #007BFF, #4da3ff);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-expert-qa-expert-profiles__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-expert-qa-expert-profiles__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.page-expert-qa-expert-profiles__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-expert-qa-expert-profiles__button--primary {
  background-color: #FFC107;
  color: #000000;
  margin-top: 20px;
}

.page-expert-qa-expert-profiles__button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-expert-qa-expert-profiles__button--secondary {
  background-color: #0056b3;
  color: #ffffff;
  margin: 10px 10px 0 0;
}

.page-expert-qa-expert-profiles__button--secondary:hover {
  background-color: #003f80;
  transform: translateY(-2px);
}

.page-expert-qa-expert-profiles__experts-grid {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-expert-qa-expert-profiles__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-expert-qa-expert-profiles__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

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

.page-expert-qa-expert-profiles__expert-card {
  background-color: #f1f8ff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-expert-qa-expert-profiles__expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-expert-qa-expert-profiles__expert-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #007BFF;
}

.page-expert-qa-expert-profiles__expert-name {
  font-size: 1.8em;
  color: #007BFF;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-expert-qa-expert-profiles__expert-bio {
  font-size: 1em;
  color: #555;
  text-align: left;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-expert-qa-expert-profiles__why-trust-us {
  padding: 80px 0;
  background-color: #e9f5ff;
}

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

.page-expert-qa-expert-profiles__feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-expert-qa-expert-profiles__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

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

.page-expert-qa-expert-profiles__feature-description {
  font-size: 0.95em;
  color: #666;
}

.page-expert-qa-expert-profiles__cta-section {
  background: linear-gradient(135deg, #007BFF, #0056b3);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-expert-qa-expert-profiles__cta-content {
  max-width: 900px;
}

.page-expert-qa-expert-profiles__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-expert-qa-expert-profiles__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.8;
}

.page-expert-qa-expert-profiles__cta-buttons .page-expert-qa-expert-profiles__button {
  margin: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-expert-qa-expert-profiles__hero-title {
    font-size: 2.8em;
  }
  .page-expert-qa-expert-profiles__section-title,
  .page-expert-qa-expert-profiles__cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-expert-qa-expert-profiles__hero-section {
    padding: 80px 0;
  }
  .page-expert-qa-expert-profiles__hero-title {
    font-size: 2.2em;
  }
  .page-expert-qa-expert-profiles__hero-description {
    font-size: 1em;
  }
  .page-expert-qa-expert-profiles__grid,
  .page-expert-qa-expert-profiles__features {
    grid-template-columns: 1fr;
  }
  .page-expert-qa-expert-profiles__expert-card {
    padding: 20px;
  }
  .page-expert-qa-expert-profiles__section-title,
  .page-expert-qa-expert-profiles__cta-title {
    font-size: 1.8em;
  }
  .page-expert-qa-expert-profiles__cta-description {
    font-size: 1em;
  }
  .page-expert-qa-expert-profiles__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}

@media (max-width: 576px) {
  .page-expert-qa-expert-profiles__hero-section {
    padding: 60px 0;
  }
  .page-expert-qa-expert-profiles__hero-title {
    font-size: 1.8em;
  }
  .page-expert-qa-expert-profiles__section-title,
  .page-expert-qa-expert-profiles__cta-title {
    font-size: 1.5em;
  }
  .page-expert-qa-expert-profiles__button {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
}