/* style/resources-nohu78-customer-support.css */
.page-resources-nohu78-customer-support {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C;
}

.page-resources-nohu78-customer-support .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-nohu78-customer-support .hero-section {
  background: linear-gradient(135deg, #1A202C, #3A404C);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

.page-resources-nohu78-customer-support .hero-section h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-nohu78-customer-support .hero-section p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e5dfd3;
}

.page-resources-nohu78-customer-support .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-resources-nohu78-customer-support .btn-primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-resources-nohu78-customer-support .btn-primary:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

.page-resources-nohu78-customer-support .btn-secondary {
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-nohu78-customer-support .btn-secondary:hover {
  background-color: #3A404C;
  color: #FFD700;
  transform: translateY(-2px);
}

.page-resources-nohu78-customer-support .info-section, 
.page-resources-nohu78-customer-support .evaluation-section, 
.page-resources-nohu78-customer-support .faq-section, 
.page-resources-nohu78-customer-support .tips-section, 
.page-resources-nohu78-customer-support .cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-nohu78-customer-support h2 {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-resources-nohu78-customer-support h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-resources-nohu78-customer-support h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-resources-nohu78-customer-support p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e5dfd3;
}

.page-resources-nohu78-customer-support .info-section .channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-resources-nohu78-customer-support .channel-item {
  background-color: #2D3748;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-resources-nohu78-customer-support .channel-item:hover {
  transform: translateY(-10px);
}

.page-resources-nohu78-customer-support .channel-item .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(80%) saturate(2000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint */
}

.page-resources-nohu78-customer-support .evaluation-section {
  background-color: #1A202C;
}

.page-resources-nohu78-customer-support .evaluation-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-resources-nohu78-customer-support .point-item {
  background-color: #2D3748;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-resources-nohu78-customer-support .point-item:hover {
  transform: translateY(-10px);
}

.page-resources-nohu78-customer-support .point-item .feature-image {
  width: 100%;
  max-width: 100px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-resources-nohu78-customer-support .faq-section {
  background-color: #2D3748;
  text-align: left;
}

.page-resources-nohu78-customer-support .faq-item {
  background-color: #1A202C;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-nohu78-customer-support .faq-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-resources-nohu78-customer-support .faq-item h3::after {
  content: '+';
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-resources-nohu78-customer-support .faq-item.active h3::after {
  transform: rotate(45deg);
}

.page-resources-nohu78-customer-support .faq-item p {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: none;
  color: #e5dfd3;
}

.page-resources-nohu78-customer-support .faq-item.active p {
  display: block;
}

.page-resources-nohu78-customer-support .tips-section {
  background-color: #1A202C;
  text-align: left;
}

.page-resources-nohu78-customer-support .tips-section ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-nohu78-customer-support .tips-section ul li {
  background-color: #2D3748;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #e5dfd3;
  display: flex;
  align-items: flex-start;
}

.page-resources-nohu78-customer-support .tips-section ul li strong {
  color: #FFD700;
  margin-right: 10px;
  flex-shrink: 0;
}

.page-resources-nohu78-customer-support .cta-section {
  background: linear-gradient(135deg, #3A404C, #1A202C);
  padding: 80px 0;
  color: #e5dfd3;
}

.page-resources-nohu78-customer-support .cta-section h2 {
  color: #FFD700;
}

.page-resources-nohu78-customer-support .cta-section p {
  max-width: 900px;
  margin: 0 auto 30px auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-nohu78-customer-support .hero-section h1 {
    font-size: 2.5em;
  }

  .page-resources-nohu78-customer-support h2 {
    font-size: 2em;
  }

  .page-resources-nohu78-customer-support h3 {
    font-size: 1.5em;
  }

  .page-resources-nohu78-customer-support .channel-grid, 
  .page-resources-nohu78-customer-support .evaluation-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-resources-nohu78-customer-support .hero-section h1 {
    font-size: 2em;
  }

  .page-resources-nohu78-customer-support .hero-section p {
    font-size: 1em;
  }

  .page-resources-nohu78-customer-support h2 {
    font-size: 1.8em;
  }

  .page-resources-nohu78-customer-support h3 {
    font-size: 1.3em;
  }

  .page-resources-nohu78-customer-support .btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-nohu78-customer-support .channel-item, 
  .page-resources-nohu78-customer-support .point-item, 
  .page-resources-nohu78-customer-support .faq-item, 
  .page-resources-nohu78-customer-support .tips-section ul li {
    padding: 20px;
  }
}