@charset "UTF-8";
.hero {
  color: #fff;
  text-align: center;
  position: relative;
}
.hero .banner-faq {
  width: 100%;
}
.hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
}
.hero .hero-content h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 10px;
  opacity: 0.9;
}
.hero .hero-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 30px;
}
.hero .hero-content .contact-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  background: #ff9800;
  color: #fff;
  font-size: 14px;
}
.hero .hero-content .contact-btn:hover {
  background: rgb(204, 121.6, 0);
  transform: translateY(-2px);
}
.hero .hero-content .search-send-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.hero .hero-content .search-send-block .search-box {
  display: flex;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  width: 40%;
}
.hero .hero-content .search-send-block .search-box:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.hero .hero-content .search-send-block .search-box .search-input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  font-size: 14px;
  outline: none;
  border-radius: 12px;
}
.hero .hero-content .search-send-block .search-box .search-input::-moz-placeholder {
  color: #999;
}
.hero .hero-content .search-send-block .search-box .search-input::placeholder {
  color: #999;
}
.hero .hero-content .search-send-block .search-box .search-btn {
  background: #1976d2;
  color: #fff;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.hero .hero-content .search-send-block .search-box .search-btn img {
  width: 16px;
  height: 16px;
}
.hero .hero-content .search-send-block .search-box .search-btn:hover {
  background: #0d47a1;
}

.faq-nav {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}
.faq-nav .faq-tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.faq-nav .faq-tabs li a {
  display: block;
  padding: 15px 25px;
  color: #333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}
.faq-nav .faq-tabs li a:hover, .faq-nav .faq-tabs li a.active {
  color: #1976d2;
  border-bottom-color: #1976d2;
}

.main-content {
  padding: 40px 0;
}
.main-content .faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
}
@media (max-width: 1200px) {
  .main-content .faq-wrapper {
    grid-template-columns: 1fr 280px;
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .main-content .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.faq-sidebar h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}
.faq-sidebar .category-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-sidebar .category-group .category-item {
  background: #fff;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}
.faq-sidebar .category-group .category-item .category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: #f5f5f5;
  cursor: pointer;
  font-weight: 500;
  color: #333;
  font-size: 14px;
}
.faq-sidebar .category-group .category-item .category-header .toggle-icon {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  transition: transform 0.3s ease;
}
.faq-sidebar .category-group .category-item .category-header:hover {
  background: rgb(237.35, 237.35, 237.35);
}
.faq-sidebar .category-group .category-item .category-questions {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 400px;
  overflow-y: auto;
}
.faq-sidebar .category-group .category-item .category-questions li {
  border-bottom: 1px solid #e0e0e0;
}
.faq-sidebar .category-group .category-item .category-questions li:last-child {
  border-bottom: none;
}
.faq-sidebar .category-group .category-item .category-questions li a {
  display: block;
  padding: 10px 15px;
  color: #666;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  transition: all 0.3s ease;
}
.faq-sidebar .category-group .category-item .category-questions li a:hover {
  color: #1976d2;
  background: rgb(228.0127659574, 239.9642553191, 251.7872340426);
}
.faq-sidebar .category-group .category-item .category-questions li a.active {
  color: #1976d2;
  font-weight: 500;
  background: rgb(228.0127659574, 239.9642553191, 251.7872340426);
}
.faq-sidebar .category-group .category-item:not(.expanded) .category-questions {
  display: none;
}
.faq-sidebar .category-group .category-item:not(.expanded) .toggle-icon::before {
  content: "+";
}
.faq-sidebar .category-group .category-item.expanded .toggle-icon::before {
  content: "−";
}

.faq-breadcrumb {
  padding: 15px 0px;
  background: #fff;
  border-radius: 6px;
  font-style: italic;
  margin-bottom: 20px;
  font-size: 13px;
  color: #000000;
}
.faq-breadcrumb a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.faq-breadcrumb a:hover {
  color: #1976d2;
}
.faq-breadcrumb .separator {
  margin: 0 8px;
}
.faq-breadcrumb .current {
  color: #000000;
  font-weight: 500;
}

.faq-content {
  background: #fff;
}
.faq-content .faq-detail .main-faq-detail {
  border: 1px rgb(222, 222, 222) solid;
  border-radius: 12px;
}
.faq-content .faq-detail .faq-detail-header {
  background: #e8f1f5;
  padding: 20px 32px;
  border-radius: 6px;
  margin-bottom: 25px;
}
.faq-content .faq-detail .faq-detail-header h1 {
  font-size: 1.4rem;
  color: #333;
  margin: 0;
  font-weight: 600;
  line-height: 1.5;
}
.faq-content .faq-detail .faq-detail-content {
  padding: 0 32px;
}
.faq-content .faq-detail .faq-detail-content .intro-text {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}
.faq-content .faq-detail .faq-detail-content .faq-section {
  margin-bottom: 25px;
}
.faq-content .faq-detail .faq-detail-content .faq-section h3 {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 12px;
}
.faq-content .faq-detail .faq-detail-content .faq-section p {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 10px;
}
.faq-content .faq-detail .faq-detail-content .faq-section p strong {
  font-weight: 600;
}
.faq-content .faq-detail .faq-detail-content .faq-related {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid #e0e0e0;
}
.faq-content .faq-detail .faq-detail-content .faq-related h4 {
  font-size: 1.05rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 15px;
}
.faq-content .faq-detail .faq-detail-content .faq-related ul {
  list-style: disc;
  padding: 10px 24px;
  margin: 0;
}
.faq-content .faq-detail .faq-detail-content .faq-related ul li {
  margin-bottom: 10px;
}
.faq-content .faq-detail .faq-detail-content .faq-related ul li a {
  color: #1976d2;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.faq-content .faq-detail .faq-detail-content .faq-related ul li a:hover {
  text-decoration: underline;
}
.faq-content .faq-detail .faq-rating {
  margin: 32px;
  margin-top: 40px;
  background: #fff;
  border-radius: 8px;
}
.faq-content .faq-detail .faq-rating h3 {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: left;
}
.faq-content .faq-detail .faq-rating .rating-options {
  display: flex;
  /* justify-content: space-between; */
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 48px;
}
@media (max-width: 768px) {
  .faq-content .faq-detail .faq-rating .rating-options {
    gap: 10px;
  }
}
.faq-content .faq-detail .faq-rating .rating-options .rating-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.faq-content .faq-detail .faq-rating .rating-options .rating-item:hover {
  transform: translateY(-5px);
}
.faq-content .faq-detail .faq-rating .rating-options .rating-item:hover .rating-icon svg {
  color: #1976d2;
}
.faq-content .faq-detail .faq-rating .rating-options .rating-item.selected .rating-icon svg {
  color: #1976d2;
}
.faq-content .faq-detail .faq-rating .rating-options .rating-item .rating-icon {
  margin-bottom: 10px;
}
.faq-content .faq-detail .faq-rating .rating-options .rating-item .rating-icon svg {
  color: #999;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .faq-content .faq-detail .faq-rating .rating-options .rating-item .rating-icon svg {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  .faq-content .faq-detail .faq-rating .rating-options .rating-item .rating-icon svg {
    width: 32px;
    height: 32px;
  }
}
.faq-content .faq-detail .faq-rating .rating-options .rating-item .rating-label {
  font-size: 12px;
  color: #333;
  text-align: center;
  line-height: 1.4;
  max-width: 80px;
}
@media (max-width: 768px) {
  .faq-content .faq-detail .faq-rating .rating-options .rating-item .rating-label {
    font-size: 12px;
    max-width: 70px;
  }
}
@media (max-width: 480px) {
  .faq-content .faq-detail .faq-rating .rating-options .rating-item .rating-label {
    font-size: 10px;
    max-width: 60px;
  }
}
.faq-content .faq-detail .faq-rating .rating-feedback {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 6px;
}
.faq-content .faq-detail .faq-rating .rating-feedback .feedback-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-content .faq-detail .faq-rating .rating-feedback .feedback-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.faq-content .faq-detail .faq-rating .rating-feedback .feedback-icon svg {
  width: 24px;
  height: 24px;
  color: #999;
}
.faq-content .faq-detail .faq-rating .rating-feedback .feedback-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 14px;
  color: #333;
  resize: none;
  outline: none;
  font-family: inherit;
  min-height: 60px;
}
.faq-content .faq-detail .faq-rating .rating-feedback .feedback-input::-moz-placeholder {
  color: #999;
  font-style: italic;
}
.faq-content .faq-detail .faq-rating .rating-feedback .feedback-input::placeholder {
  color: #999;
  font-style: italic;
}
@media (max-width: 768px) {
  .faq-content .faq-detail .faq-rating .rating-feedback .feedback-input {
    font-size: 13px;
    min-height: 50px;
  }
}

.help-sidebar h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}
.help-sidebar .help-links {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border-radius: 6px;
}
.help-sidebar .help-links li:last-child {
  border-bottom: none;
}
.help-sidebar .help-links li a {
  display: flex;
  align-items: flex-start;
  padding: 12px 0px;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  transition: all 0.3s ease;
}
.help-sidebar .help-links li a .icon {
  margin-right: 10px;
  font-size: 16px;
  color: #1976d2;
  flex-shrink: 0;
}
.help-sidebar .help-links li a:hover {
  background: rgb(228.0127659574, 239.9642553191, 251.7872340426);
  color: #1976d2;
}

.help-section {
  margin-top: 60px;
  text-align: center;
}
.help-section .help-content {
  padding: 40px;
  border-radius: 12px;
  border: 1px #cec6c8 solid;
  margin-bottom: 120px;
}
.help-section .help-content h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}
.help-section .help-content p {
  color: #666;
  margin-bottom: 30px;
}
.help-section .help-content .help-options {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .help-section .help-content .help-options {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.help-section .help-content .help-options .help-option {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  gap: 24px;
  width: 340px;
  padding: 12px 24px;
  border-radius: 12px;
  background-color: #e6f0f8;
}
.help-section .help-content .help-options .help-option:hover {
  transform: translateY(-3px);
}
.help-section .help-content .help-options .help-option .help-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1588ea;
  border-radius: 50%;
}
.help-section .help-content .help-options .help-option .help-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}
.help-section .help-content .help-options .help-option p {
  color: #333;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .hero {
    padding: 40px 0;
  }
  .hero .hero-content h1 {
    font-size: 2rem;
  }
  .hero .hero-content h2 {
    font-size: 1.5rem;
  }
  .hero .hero-content .search-box {
    max-width: 100%;
  }
  .faq-nav .faq-tabs {
    flex-wrap: wrap;
  }
  .faq-nav .faq-tabs li a {
    padding: 12px 15px;
    font-size: 13px;
  }
  .main-content {
    padding: 30px 0;
  }
  .faq-sidebar {
    order: 2;
  }
  .help-sidebar {
    order: 3;
  }
  .faq-content {
    order: 1;
  }
  .faq-content .faq-breadcrumb {
    padding: 12px 15px;
    font-size: 12px;
  }
  .faq-content .faq-detail-header h1 {
    font-size: 1.2rem;
  }
  .faq-content .faq-detail-content .intro-text,
  .faq-content .faq-detail-content .faq-section p {
    font-size: 13px;
  }
  .faq-content .faq-detail-content .faq-section h3 {
    font-size: 1rem;
  }
  .help-section {
    margin-top: 40px;
  }
  .help-section .help-content h3 {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 30px 0;
  }
  .hero .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero .hero-content h2 {
    font-size: 1.3rem;
  }
  .hero .hero-content .search-box .search-input {
    padding: 10px 15px;
    font-size: 13px;
  }
  .hero .hero-content .search-box .search-btn {
    padding: 10px 15px;
  }
  .faq-nav .faq-tabs li a {
    padding: 10px 12px;
    font-size: 12px;
  }
  .main-content {
    padding: 25px 0;
  }
  .help-section .help-content {
    padding: 0px;
  }
}
.category-questions {
  transition: max-height 0.3s ease;
}

.category-item.expanded .category-questions {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    position: relative;
    padding: 30px 0;
    height: 300px;
  }
  .hero .banner-faq {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
  }
  .hero .hero-content {
    width: 85%;
    padding: 0 15px;
  }
  .hero .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  .hero .hero-content h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .hero .hero-content .search-send-block {
    flex-direction: column;
    gap: 12px;
  }
  .hero .hero-content .search-send-block .search-box {
    width: 100%;
  }
  .hero .hero-content .search-send-block .search-box .search-input {
    padding: 10px 15px;
    font-size: 13px;
  }
  .hero .hero-content .search-send-block .search-box .search-btn {
    padding: 10px 15px;
  }
  .hero .hero-content .search-send-block .search-box .search-btn img {
    width: 18px;
    height: 18px;
  }
  .hero .hero-content .search-send-block .contact-btn {
    width: 100%;
    font-size: 13px;
    padding: 10px 20px;
  }
  .faq-nav .faq-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .faq-nav .faq-tabs li {
    flex-shrink: 0;
  }
  .faq-nav .faq-tabs li a {
    padding: 12px 18px;
    font-size: 13px;
    white-space: nowrap;
  }
  .main-content {
    padding: 30px 0;
  }
  .main-content .faq-wrapper {
    gap: 25px;
  }
  .faq-sidebar h3 {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  .faq-sidebar .category-group {
    gap: 10px;
  }
  .faq-sidebar .category-group .category-item .category-header {
    padding: 10px 12px;
    font-size: 13px;
  }
  .faq-sidebar .category-group .category-item .category-questions {
    max-height: 350px;
  }
  .faq-sidebar .category-group .category-item .category-questions li a {
    padding: 10px 12px;
    font-size: 13px;
  }
  .faq-content .faq-breadcrumb {
    padding: 10px 15px;
    font-size: 12px;
    margin-bottom: 15px;
  }
  .faq-content .faq-detail .faq-detail-header {
    padding: 15px 20px;
    margin-bottom: 20px;
  }
  .faq-content .faq-detail .faq-detail-header h1 {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .faq-content .faq-detail .faq-detail-content {
    padding: 0 8px;
  }
  .faq-content .faq-detail .faq-detail-content .intro-text {
    font-size: 13px;
    margin-bottom: 18px;
  }
  .faq-content .faq-detail .faq-detail-content .faq-section {
    margin-bottom: 20px;
  }
  .faq-content .faq-detail .faq-detail-content .faq-section h3 {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  .faq-content .faq-detail .faq-detail-content .faq-section p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .faq-content .faq-detail .faq-detail-content .faq-related {
    margin-top: 30px;
    padding-top: 20px;
  }
  .faq-content .faq-detail .faq-detail-content .faq-related h4 {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  .faq-content .faq-detail .faq-detail-content .faq-related ul li {
    margin-bottom: 10px;
    font-size: 13px;
  }
  .faq-content .faq-detail .faq-detail-content .faq-related ul li a {
    padding: 8px 12px;
  }
  .faq-content .faq-detail .faq-rating {
    margin-top: 30px;
    padding: 20px;
  }
  .faq-content .faq-detail .faq-rating h3 {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .faq-content .faq-detail .faq-rating .rating-options {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
  }
  .faq-content .faq-detail .faq-rating .rating-options .rating-item {
    width: 100%;
    flex-direction: row;
    gap: 15px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
  }
  .faq-content .faq-detail .faq-rating .rating-options .rating-item .rating-icon svg {
    width: 40px;
    height: 40px;
  }
  .faq-content .faq-detail .faq-rating .rating-options .rating-item .rating-label {
    font-size: 13px;
    text-align: left;
  }
  .faq-content .faq-detail .faq-rating .rating-options .rating-item .rating-label br {
    display: none;
  }
  .faq-content .faq-detail .faq-rating .rating-feedback {
    padding: 15px;
  }
  .faq-content .faq-detail .faq-rating .rating-feedback .feedback-icon {
    width: 40px;
    height: 40px;
  }
  .faq-content .faq-detail .faq-rating .rating-feedback .feedback-icon img {
    width: 30px;
    height: 30px;
  }
  .faq-content .faq-detail .faq-rating .rating-feedback .feedback-input {
    font-size: 13px;
    min-height: 80px;
  }
  .help-sidebar h3 {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  .help-sidebar .help-links li a {
    padding: 10px 12px;
    font-size: 12px;
  }
  .help-sidebar .help-links li a .icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
  }
  .help-sidebar .help-links li a .icon img {
    width: 100%;
    height: 100%;
  }
  .help-section {
    margin-top: 40px;
  }
  .help-section .help-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
  }
  .help-section .help-content p {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .help-section .help-content .help-options {
    flex-direction: column;
    gap: 15px;
  }
  .help-section .help-content .help-options .help-option {
    width: 100%;
    max-width: 400px;
    padding: 15px 20px;
  }
  .help-section .help-content .help-options .help-option .help-icon {
    width: 50px;
    height: 50px;
  }
  .help-section .help-content .help-options .help-option .help-icon img {
    width: 40px;
    height: 40px;
  }
  .help-section .help-content .help-options .help-option p {
    font-size: 14px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .hero .banner-faqs {
    height: 280px;
  }
  .hero .hero-content {
    width: 90%;
  }
  .hero .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero .hero-content h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  .hero .hero-content .search-send-block {
    gap: 10px;
  }
  .hero .hero-content .search-send-block .search-box .search-input {
    padding: 9px 12px;
    font-size: 12px;
  }
  .hero .hero-content .search-send-block .search-box .search-btn {
    padding: 9px 12px;
  }
  .hero .hero-content .search-send-block .search-box .search-btn img {
    width: 16px;
    height: 16px;
  }
  .hero .hero-content .search-send-block .contact-btn {
    font-size: 12px;
    padding: 9px 15px;
  }
  .faq-nav .faq-tabs li a {
    padding: 10px 15px;
    font-size: 12px;
  }
  .main-content {
    padding: 25px 0;
  }
  .main-content .faq-wrapper {
    gap: 20px;
  }
  .faq-content .faq-breadcrumb {
    padding: 8px 12px;
    font-size: 12px;
  }
  .faq-content .faq-detail .faq-detail-header {
    padding: 12px 15px;
    margin-bottom: 15px;
  }
  .faq-content .faq-detail .faq-detail-header h1 {
    font-size: 1.1rem;
  }
  .faq-content .faq-detail .faq-detail-content {
    padding: 0 5px;
  }
  .faq-content .faq-detail .faq-detail-content .intro-text {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .faq-content .faq-detail .faq-detail-content .faq-section {
    margin-bottom: 18px;
  }
  .faq-content .faq-detail .faq-detail-content .faq-section h3 {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
  .faq-content .faq-detail .faq-detail-content .faq-section p {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .faq-content .faq-detail .faq-detail-content .faq-related {
    margin-top: 25px;
    padding-top: 18px;
  }
  .faq-content .faq-detail .faq-detail-content .faq-related h4 {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  .faq-content .faq-detail .faq-detail-content .faq-related ul li {
    margin-bottom: 8px;
    font-size: 12px;
  }
  .faq-content .faq-detail .faq-detail-content .faq-related ul li a {
    padding: 7px 10px;
  }
  .faq-content .faq-detail .faq-rating {
    margin-top: 25px;
    padding: 15px;
  }
  .faq-content .faq-detail .faq-rating h3 {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  .faq-content .faq-detail .faq-rating .rating-options {
    gap: 12px;
    margin-bottom: 20px;
  }
  .faq-content .faq-detail .faq-rating .rating-options .rating-item {
    padding: 10px;
    gap: 12px;
  }
  .faq-content .faq-detail .faq-rating .rating-options .rating-item .rating-icon svg {
    width: 35px;
    height: 35px;
  }
  .faq-content .faq-detail .faq-rating .rating-options .rating-item .rating-label {
    font-size: 12px;
  }
  .faq-content .faq-detail .faq-rating .rating-feedback {
    padding: 12px;
    gap: 12px;
  }
  .faq-content .faq-detail .faq-rating .rating-feedback .feedback-icon {
    width: 35px;
    height: 35px;
  }
  .faq-content .faq-detail .faq-rating .rating-feedback .feedback-icon img {
    width: 28px;
    height: 28px;
  }
  .faq-content .faq-detail .faq-rating .rating-feedback .feedback-input {
    font-size: 12px;
    min-height: 70px;
    padding: 10px;
  }
  .help-sidebar h3 {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  .help-sidebar .help-links li a {
    padding: 9px 10px;
    font-size: 12px;
  }
  .help-sidebar .help-links li a .icon {
    width: 14px;
    height: 14px;
    margin-right: 8px;
  }
  .help-section {
    margin-top: 30px;
  }
  .help-section .help-content h3 {
    font-size: 1.05rem;
  }
  .help-section .help-content p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .help-section .help-content .help-options {
    gap: 12px;
  }
  .help-section .help-content .help-options .help-option {
    padding: 12px 15px;
    gap: 18px;
  }
  .help-section .help-content .help-options .help-option .help-icon {
    width: 45px;
    height: 45px;
  }
  .help-section .help-content .help-options .help-option .help-icon img {
    width: 35px;
    height: 35px;
  }
  .help-section .help-content .help-options .help-option p {
    font-size: 13px;
  }
}
@media screen and (max-width: 375px) {
  .hero .banner-faqs {
    height: 240px;
  }
  .hero .hero-content {
    width: 95%;
  }
  .hero .hero-content h1 {
    font-size: 1.3rem;
  }
  .hero .hero-content h2 {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }
  .hero .hero-content .search-send-block .search-box .search-input {
    padding: 8px 10px;
    font-size: 12px;
  }
  .hero .hero-content .search-send-block .search-box .search-btn {
    padding: 8px 10px;
  }
  .hero .hero-content .search-send-block .search-box .search-btn img {
    width: 14px;
    height: 14px;
  }
  .hero .hero-content .search-send-block .contact-btn {
    font-size: 12px;
    padding: 8px 12px;
  }
  .faq-content .faq-detail .faq-detail-header {
    padding: 10px 12px;
  }
  .faq-content .faq-detail .faq-detail-header h1 {
    font-size: 1rem;
  }
  .faq-content .faq-detail .faq-detail-content .intro-text {
    font-size: 12px;
  }
  .faq-content .faq-detail .faq-detail-content .faq-section h3 {
    font-size: 0.85rem;
  }
  .faq-content .faq-detail .faq-detail-content .faq-section p {
    font-size: 12px;
  }
  .faq-content .faq-detail .faq-rating {
    padding: 12px;
  }
  .faq-content .faq-detail .faq-rating h3 {
    font-size: 0.9rem;
  }
  .faq-content .faq-detail .faq-rating .rating-options .rating-item {
    padding: 8px;
  }
  .faq-content .faq-detail .faq-rating .rating-options .rating-item .rating-icon svg {
    width: 32px;
    height: 32px;
  }
  .faq-content .faq-detail .faq-rating .rating-options .rating-item .rating-label {
    font-size: 12px;
  }
  .faq-content .faq-detail .faq-rating .rating-feedback {
    padding: 10px;
  }
  .faq-content .faq-detail .faq-rating .rating-feedback .feedback-icon {
    width: 32px;
    height: 32px;
  }
  .faq-content .faq-detail .faq-rating .rating-feedback .feedback-icon img {
    width: 26px;
    height: 26px;
  }
  .faq-content .faq-detail .faq-rating .rating-feedback .feedback-input {
    font-size: 12px;
    min-height: 60px;
  }
  .help-section .help-content h3 {
    font-size: 1rem;
  }
  .help-section .help-content p {
    font-size: 12px;
  }
  .help-section .help-content .help-options .help-option {
    padding: 10px 12px;
    gap: 15px;
  }
  .help-section .help-content .help-options .help-option .help-icon {
    width: 40px;
    height: 40px;
  }
  .help-section .help-content .help-options .help-option .help-icon img {
    width: 32px;
    height: 32px;
  }
  .help-section .help-content .help-options .help-option p {
    font-size: 12px;
  }
}
