.page-resources-123win-customer-support {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A2E36; /* Main dark blue background */
  line-height: 1.6;
}

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

.page-resources-123win-customer-support .hero-section {
  background: linear-gradient(135deg, #0A2E36 0%, #1A4D59 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero titles */
}

.page-resources-123win-customer-support .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
}

.page-resources-123win-customer-support .hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0; /* Light gray for subtitle */
}

.page-resources-123win-customer-support .hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-resources-123win-customer-support .btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2E36; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-resources-123win-customer-support .btn-primary:hover {
  background-color: #E6C200; /* Darker gold on hover */
  border-color: #E6C200;
  transform: translateY(-2px);
}

.page-resources-123win-customer-support .btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
}

.page-resources-123win-customer-support .btn-secondary:hover {
  background-color: #FFD700;
  color: #0A2E36; /* Dark blue text on gold hover */
  transform: translateY(-2px);
}

.page-resources-123win-customer-support .section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-resources-123win-customer-support .section-description {
  font-size: 1.1em;
  color: #B0B0B0; /* Lighter gray for descriptions */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.page-resources-123win-customer-support .support-channels-section,
.page-resources-123win-customer-support .service-scope-section,
.page-resources-123win-customer-support .commitment-section,
.page-resources-123win-customer-support .tips-section {
  padding: 80px 0;
  background-color: #0A2E36;
}

.page-resources-123win-customer-support .channels-grid,
.page-resources-123win-customer-support .scope-grid,
.page-resources-123win-customer-support .commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-123win-customer-support .channel-card,
.page-resources-123win-customer-support .scope-item,
.page-resources-123win-customer-support .commitment-item {
  background-color: #1A4D59; /* Slightly lighter dark blue for cards */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-123win-customer-support .channel-card:hover,
.page-resources-123win-customer-support .scope-item:hover,
.page-resources-123win-customer-support .commitment-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-resources-123win-customer-support .channel-icon,
.page-resources-123win-customer-support .scope-icon,
.page-resources-123win-customer-support .commitment-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

.page-resources-123win-customer-support .channel-title,
.page-resources-123win-customer-support .scope-title,
.page-resources-123win-customer-support .commitment-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
}

.page-resources-123win-customer-support .channel-text,
.page-resources-123win-customer-support .scope-text,
.page-resources-123win-customer-support .commitment-text {
  font-size: 1em;
  color: #C0C0C0; /* Light gray for card text */
  margin-bottom: 20px;
}

.page-resources-123win-customer-support .channel-detail {
  font-size: 0.95em;
  color: #FFD700;
  margin-bottom: 5px;
}

.page-resources-123win-customer-support .btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 6px;
}

.page-resources-123win-customer-support .btn-link {
  color: #FFD700; /* Gold for link buttons */
  text-decoration: none;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
}

.page-resources-123win-customer-support .btn-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #FFD700;
  transition: width 0.3s ease;
}

.page-resources-123win-customer-support .btn-link:hover::after {
  width: 100%;
}

.page-resources-123win-customer-support .tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 40px auto;
  text-align: left;
}

.page-resources-123win-customer-support .tips-list li {
  background-color: #1A4D59;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-resources-123win-customer-support .tips-list li strong {
  color: #FFD700;
}

.page-resources-123win-customer-support .cta-section {
  background: #FFD700; /* Gold background for CTA */
  padding: 80px 0;
  text-align: center;
  color: #0A2E36; /* Dark blue text on gold */
}

.page-resources-123win-customer-support .cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #0A2E36;
}

.page-resources-123win-customer-support .cta-text {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #333;
}

.page-resources-123win-customer-support .cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-resources-123win-customer-support .btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-123win-customer-support .hero-title {
    font-size: 2.8em;
  }
  .page-resources-123win-customer-support .section-title {
    font-size: 2em;
  }
  .page-resources-123win-customer-support .cta-title {
    font-size: 2.2em;
  }
  .page-resources-123win-customer-support .channels-grid,
  .page-resources-123win-customer-support .scope-grid,
  .page-resources-123win-customer-support .commitment-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-123win-customer-support .hero-section {
    padding: 80px 0;
  }
  .page-resources-123win-customer-support .hero-title {
    font-size: 2.2em;
  }
  .page-resources-123win-customer-support .hero-subtitle {
    font-size: 1.1em;
  }
  .page-resources-123win-customer-support .hero-actions,
  .page-resources-123win-customer-support .cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-123win-customer-support .btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-resources-123win-customer-support .section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-resources-123win-customer-support .section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-resources-123win-customer-support .support-channels-section,
  .page-resources-123win-customer-support .service-scope-section,
  .page-resources-123win-customer-support .commitment-section,
  .page-resources-123win-customer-support .tips-section {
    padding: 60px 0;
  }
  .page-resources-123win-customer-support .cta-title {
    font-size: 1.8em;
  }
  .page-resources-123win-customer-support .cta-text {
    font-size: 1.05em;
  }
}

@media (max-width: 480px) {
  .page-resources-123win-customer-support .hero-title {
    font-size: 1.8em;
  }
  .page-resources-123win-customer-support .btn {
    width: 90%;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-123win-customer-support .channel-title,
  .page-resources-123win-customer-support .scope-title,
  .page-resources-123win-customer-support .commitment-title {
    font-size: 1.4em;
  }
  .page-resources-123win-customer-support .cta-title {
    font-size: 1.6em;
  }
}