/* style/support-online-cs.css */
.page-support-online-cs {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A2342; /* Main background dark blue */
  line-height: 1.6;
}

.page-support-online-cs__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-support-online-cs__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3B69 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-support-online-cs__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

.page-support-online-cs__hero-subtitle {
  font-size: 1.3em;
  color: #FFFFFF;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.page-support-online-cs__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
  overflow: hidden;
}

.page-support-online-cs__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(70%) blur(3px);
  transform: scale(1.05);
}

.page-support-online-cs__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-support-online-cs__intro, .page-support-online-cs__channels, .page-support-online-cs__common-issues, .page-support-online-cs__commitment, .page-support-online-cs__cta-final {
  padding: 60px 0;
}

.page-support-online-cs__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-support-online-cs__text strong {
  color: #FFD700;
}

.page-support-online-cs__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  cursor: pointer;
}

.page-support-online-cs__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A2342; /* Dark blue text on gold */
  border: 2px solid #FFD700;
}

.page-support-online-cs__btn--primary:hover {
  background-color: #E0C000;
  color: #000000;
  transform: translateY(-3px);
}

.page-support-online-cs__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-support-online-cs__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-3px);
}

.page-support-online-cs__channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support-online-cs__channel-item {
  background-color: #1A3B69; /* Slightly lighter dark blue for cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support-online-cs__channel-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.page-support-online-cs__channel-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-support-online-cs__channel-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support-online-cs__channel-desc {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 25px;
}

.page-support-online-cs__issue-list, .page-support-online-cs__commitment-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-support-online-cs__issue-list li, .page-support-online-cs__commitment-list li {
  background-color: #1A3B69;
  border-left: 5px solid #FFD700;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-support-online-cs__list-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

.page-support-online-cs__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px dashed rgba(255, 215, 0, 0.3);
}

.page-support-online-cs__cta-final {
  background-color: #0A2342;
  text-align: center;
  padding: 80px 0;
  border-top: 5px solid #FFD700;
}

.page-support-online-cs__cta-buttons {
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-support-online-cs__hero-title {
    font-size: 2.5em;
  }

  .page-support-online-cs__hero-subtitle {
    font-size: 1.1em;
  }

  .page-support-online-cs__section-title {
    font-size: 2em;
  }

  .page-support-online-cs__channel-grid {
    grid-template-columns: 1fr;
  }

  .page-support-online-cs__issue-list, .page-support-online-cs__commitment-list {
    grid-template-columns: 1fr;
  }

  .page-support-online-cs__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-support-online-cs__hero-title {
    font-size: 2em;
  }

  .page-support-online-cs__hero-subtitle {
    font-size: 1em;
  }

  .page-support-online-cs__section-title {
    font-size: 1.8em;
  }

  .page-support-online-cs__btn {
    width: 100%;
    margin: 10px 0;
  }
}