.page-index-24-7-customer-service {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #F8F8F8; /* Light text on dark background */
  line-height: 1.6;
  background-color: #0A2342;
}

.page-index-24-7-customer-service__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index-24-7-customer-service__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3E6D 100%);
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-index-24-7-customer-service__hero-content {
  max-width: 800px;
}

.page-index-24-7-customer-service__hero h1 {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-24-7-customer-service__hero p {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-index-24-7-customer-service__hero-image-container {
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
}

.page-index-24-7-customer-service__hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-index-24-7-customer-service__section {
  padding: 60px 0;
}

.page-index-24-7-customer-service__section--channels {
  background-color: #122F50;
}

.page-index-24-7-customer-service__section--commitment {
  background-color: #0A2342;
}

.page-index-24-7-customer-service__section--process {
  background-color: #122F50;
}

.page-index-24-7-customer-service__section--faq {
  background-color: #0A2342;
}

.page-index-24-7-customer-service__section h2 {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-index-24-7-customer-service__section p {
  font-size: 1.1em;
  color: #E0E0E0;
  text-align: center;
  margin-bottom: 30px;
}

.page-index-24-7-customer-service__channels-grid,
.page-index-24-7-customer-service__commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-24-7-customer-service__channel-card,
.page-index-24-7-customer-service__commitment-item {
  background-color: #1A3E6D;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-24-7-customer-service__channel-card:hover,
.page-index-24-7-customer-service__commitment-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.page-index-24-7-customer-service__channel-card h3,
.page-index-24-7-customer-service__commitment-item h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-24-7-customer-service__channel-card p,
.page-index-24-7-customer-service__commitment-item p {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 20px;
  text-align: center;
}

.page-index-24-7-customer-service__channel-icon,
.page-index-24-7-customer-service__commitment-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-index-24-7-customer-service__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-24-7-customer-service__button--primary {
  background-color: #FFD700;
  color: #0A2342;
  border: 2px solid #FFD700;
}

.page-index-24-7-customer-service__button--primary:hover {
  background-color: #E6B800;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-24-7-customer-service__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-index-24-7-customer-service__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-24-7-customer-service__process-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-index-24-7-customer-service__process-list li {
  background-color: #1A3E6D;
  border-left: 5px solid #FFD700;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-index-24-7-customer-service__process-list li h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-index-24-7-customer-service__process-list li p {
  color: #C0C0C0;
  text-align: left;
  margin-bottom: 0;
}

.page-index-24-7-customer-service__cta-box {
  background-color: #0A2342;
  border: 1px solid #FFD700;
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-index-24-7-customer-service__cta-box p {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 30px;
}

.page-index-24-7-customer-service__faq-item {
  background-color: #1A3E6D;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-index-24-7-customer-service__faq-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-24-7-customer-service__faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-index-24-7-customer-service__faq-item h3.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-24-7-customer-service__faq-item p {
  color: #C0C0C0;
  font-size: 1em;
  margin-top: 15px;
  display: none;
  text-align: left;
}

.page-index-24-7-customer-service__faq-item p.active {
  display: block;
}

.page-index-24-7-customer-service__call-to-action {
  background-color: #FFD700;
  padding: 80px 0;
  text-align: center;
  color: #0A2342;
}

.page-index-24-7-customer-service__call-to-action h2 {
  font-size: 3em;
  color: #0A2342;
  margin-bottom: 20px;
}

.page-index-24-7-customer-service__call-to-action p {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 40px;
}

.page-index-24-7-customer-service__call-to-action .page-index-24-7-customer-service__button--primary {
  background-color: #0A2342;
  color: #FFD700;
  border: 2px solid #0A2342;
}

.page-index-24-7-customer-service__call-to-action .page-index-24-7-customer-service__button--primary:hover {
  background-color: #2A4A7A;
  border-color: #2A4A7A;
}

.page-index-24-7-customer-service__call-to-action .page-index-24-7-customer-service__button--secondary {
  background-color: transparent;
  color: #0A2342;
  border: 2px solid #0A2342;
}

.page-index-24-7-customer-service__call-to-action .page-index-24-7-customer-service__button--secondary:hover {
  background-color: #0A2342;
  color: #FFD700;
}

@media (max-width: 768px) {
  .page-index-24-7-customer-service__hero {
    padding: 60px 0;
  }

  .page-index-24-7-customer-service__hero h1 {
    font-size: 2.5em;
  }

  .page-index-24-7-customer-service__hero p {
    font-size: 1em;
  }

  .page-index-24-7-customer-service__section h2 {
    font-size: 2em;
  }

  .page-index-24-7-customer-service__channels-grid,
  .page-index-24-7-customer-service__commitment-grid {
    grid-template-columns: 1fr;
  }

  .page-index-24-7-customer-service__button {
    padding: 12px 25px;
    font-size: 1em;
    margin-left: 0;
    margin-top: 15px;
  }

  .page-index-24-7-customer-service__button--secondary {
    margin-left: 0;
  }

  .page-index-24-7-customer-service__cta-box {
    padding: 30px;
  }

  .page-index-24-7-customer-service__cta-box p {
    font-size: 1.1em;
  }

  .page-index-24-7-customer-service__call-to-action h2 {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-index-24-7-customer-service__hero h1 {
    font-size: 2em;
  }

  .page-index-24-7-customer-service__section h2 {
    font-size: 1.8em;
  }

  .page-index-24-7-customer-service__button {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .page-index-24-7-customer-service__call-to-action h2 {
    font-size: 1.8em;
  }
}