.page-resources-customer-support {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-resources-customer-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-resources-customer-support__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-customer-support__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-customer-support__hero-description {
  font-size: 1.15em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

.page-resources-customer-support__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-customer-support__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-resources-customer-support__section {
  padding: 60px 0;
}

.page-resources-customer-support__section--alt-bg {
  background-color: #e9ecef;
}

.page-resources-customer-support__section-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-customer-support__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-customer-support__intro-text {
  font-size: 1.05em;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 50px;
  color: #555;
}

.page-resources-customer-support__sub-title {
  font-size: 1.6em;
  color: #007bff;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-customer-support__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-resources-customer-support__content-grid--reverse {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 992px) {
  .page-resources-customer-support__content-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-customer-support__content-grid--reverse .page-resources-customer-support__image-wrapper {
    order: -1;
  }
}

.page-resources-customer-support__image-wrapper {
  text-align: center;
}

.page-resources-customer-support__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-resources-customer-support__channels-grid,
.page-resources-customer-support__scenario-grid,
.page-resources-customer-support__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-customer-support__channel-card,
.page-resources-customer-support__scenario-card,
.page-resources-customer-support__tip-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-customer-support__channel-card:hover,
.page-resources-customer-support__scenario-card:hover,
.page-resources-customer-support__tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-resources-customer-support__channel-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-resources-customer-support__channel-title,
.page-resources-customer-support__scenario-title,
.page-resources-customer-support__tip-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-resources-customer-support__channel-card p,
.page-resources-customer-support__scenario-card p,
.page-resources-customer-support__tip-card p {
  font-size: 0.95em;
  color: #444;
}

.page-resources-customer-support__center-cta {
  text-align: center;
  margin-top: 50px;
}

.page-resources-customer-support__cta-button--secondary {
  background-color: #007bff;
  color: #ffffff;
}

.page-resources-customer-support__cta-button--secondary:hover {
  background-color: #0056b3;
}

.page-resources-customer-support__feature-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-resources-customer-support__feature-list li {
  background-color: #ffffff;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-left: 5px solid #ffc107;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333;
  transition: transform 0.2s ease;
}

.page-resources-customer-support__feature-list li:hover {
  transform: translateX(5px);
}

.page-resources-customer-support__feature-list li strong {
  color: #007bff;
}

.page-resources-customer-support__image-wrapper--full-width {
  margin-top: 40px;
}

.page-resources-customer-support__section--final-cta {
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-resources-customer-support__section--final-cta .page-resources-customer-support__section-title {
  color: #ffffff;
}

.page-resources-customer-support__section--final-cta .page-resources-customer-support__section-title::after {
  background-color: #ffc107;
}

.page-resources-customer-support__section--final-cta .page-resources-customer-support__intro-text {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-resources-customer-support__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-customer-support__cta-button--primary {
  background-color: #ffc107;
  color: #000000;
}

.page-resources-customer-support__cta-button--primary:hover {
  background-color: #e0a800;
}

@media (max-width: 768px) {
  .page-resources-customer-support__hero-title {
    font-size: 2em;
  }
  .page-resources-customer-support__hero-description {
    font-size: 1em;
  }
  .page-resources-customer-support__section-title {
    font-size: 1.8em;
  }
  .page-resources-customer-support__sub-title {
    font-size: 1.3em;
  }
  .page-resources-customer-support__channels-grid,
  .page-resources-customer-support__scenario-grid,
  .page-resources-customer-support__tips-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-customer-support__cta-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-resources-customer-support__hero {
    padding: 60px 0;
  }
  .page-resources-customer-support__hero-title {
    font-size: 1.6em;
  }
  .page-resources-customer-support__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-customer-support__section {
    padding: 40px 0;
  }
  .page-resources-customer-support__section-title {
    font-size: 1.5em;
  }
  .page-resources-customer-support__intro-text {
    font-size: 0.95em;
  }
  .page-resources-customer-support__channel-card,
  .page-resources-customer-support__scenario-card,
  .page-resources-customer-support__tip-card {
    padding: 20px;
  }
  .page-resources-customer-support__channel-title,
  .page-resources-customer-support__scenario-title,
  .page-resources-customer-support__tip-title {
    font-size: 1.2em;
  }
}