.page-index-customer-service {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A1931; /* Main dark blue background */
  line-height: 1.6;
}

.page-index-customer-service__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A1931, #1A375D);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-customer-service__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-index-customer-service__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-index-customer-service__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-index-customer-service__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main titles */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-index-customer-service__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-index-customer-service__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #CCCCCC;
}

.page-index-customer-service__channels, .page-index-customer-service__commitment, .page-index-customer-service__faq-preview, .page-index-customer-service__contact-form, .page-index-customer-service__responsible-gambling, .page-index-customer-service__why-us {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-index-customer-service__channel-item, .page-index-customer-service__commitment-item {
  background-color: #1A375D; /* Darker blue for cards */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #FFD70040;
}

.page-index-customer-service__channel-item:hover, .page-index-customer-service__commitment-item:hover {
  transform: translateY(-8px);
  background-color: #2A4F82;
}

.page-index-customer-service__channel-icon, .page-index-customer-service__commitment-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  filter: drop-shadow(0 0 5px #FFD70080);
}

.page-index-customer-service__channel-title, .page-index-customer-service__commitment-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-customer-service__channel-text, .page-index-customer-service__commitment-text {
  font-size: 1em;
  color: #CCCCCC;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-index-customer-service__channel-text a {
  color: #FFD700;
  text-decoration: none;
}

.page-index-customer-service__channel-text a:hover {
  text-decoration: underline;
}

.page-index-customer-service__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-index-customer-service__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark blue text on gold */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-customer-service__btn--primary:hover {
  background-color: #E0B500;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-index-customer-service__btn--secondary {
  background-color: #0A1931; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
}

.page-index-customer-service__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-customer-service__btn--tertiary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-customer-service__btn--tertiary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-customer-service__faq-list {
  margin-top: 40px;
}

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

.page-index-customer-service__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-index-customer-service__faq-question::after {
  content: '+';
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-index-customer-service__faq-answer {
  font-size: 1.05em;
  color: #CCCCCC;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding-top: 0;
}

.page-index-customer-service__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding-top: 15px;
}

.page-index-customer-service__faq-answer strong {
  color: #FFD700;
}

.page-index-customer-service__cta-faq {
  text-align: center;
  margin-top: 50px;
}

.page-index-customer-service__cta-faq p {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #E0E0E0;
}

.page-index-customer-service__contact-form {
  background-color: #1A375D;
  padding: 60px 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-top: 80px;
  border: 1px solid #FFD70040;
}

.page-index-customer-service__contact-form .page-index-customer-service__section-title, .page-index-customer-service__contact-form .page-index-customer-service__section-description {
  color: #FFD700;
}

.page-index-customer-service__form-group {
  margin-bottom: 25px;
}

.page-index-customer-service__form-label {
  display: block;
  font-size: 1.1em;
  color: #FFD700;
  margin-bottom: 8px;
  font-weight: bold;
}

.page-index-customer-service__form-input, .page-index-customer-service__form-textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #FFD70080;
  border-radius: 8px;
  background-color: #0A1931;
  color: #FFFFFF;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-index-customer-service__form-input::placeholder, .page-index-customer-service__form-textarea::placeholder {
  color: #888;
}

.page-index-customer-service__form-input:focus, .page-index-customer-service__form-textarea:focus {
  border-color: #FFD700;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.page-index-customer-service__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.page-index-customer-service__btn--submit {
  width: 100%;
  padding: 15px;
  font-size: 1.2em;
  margin-top: 20px;
}

.page-index-customer-service__responsible-gambling {
  text-align: center;
  padding: 80px 20px;
  background-color: #0A1931;
}

.page-index-customer-service__responsible-gambling .page-index-customer-service__section-title {
  color: #FFD700;
}

.page-index-customer-service__responsible-gambling .page-index-customer-service__section-description {
  color: #CCCCCC;
  margin-bottom: 40px;
}

.page-index-customer-service__why-us {
  background-color: #1A375D;
  padding: 80px 20px;
  border-radius: 15px;
  margin-top: 80px;
  border: 1px solid #FFD70040;
}

.page-index-customer-service__why-us .page-index-customer-service__section-title, .page-index-customer-service__why-us .page-index-customer-service__section-description {
  color: #FFD700;
}

.page-index-customer-service__why-list {
  list-style: none;
  padding-left: 0;
  margin-top: 40px;
}

.page-index-customer-service__why-list li {
  background-color: #0A1931;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFD700;
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-index-customer-service__why-list li strong {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-index-customer-service__hero {
    padding: 60px 15px;
  }

  .page-index-customer-service__hero-title {
    font-size: 2.5em;
  }

  .page-index-customer-service__hero-description {
    font-size: 1em;
  }

  .page-index-customer-service__section-title {
    font-size: 2em;
  }

  .page-index-customer-service__section-description {
    font-size: 0.95em;
  }

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

  .page-index-customer-service__channel-item, .page-index-customer-service__commitment-item {
    padding: 25px;
  }

  .page-index-customer-service__channel-title, .page-index-customer-service__commitment-title {
    font-size: 1.5em;
  }

  .page-index-customer-service__faq-question {
    font-size: 1.2em;
  }

  .page-index-customer-service__faq-answer {
    font-size: 0.95em;
  }

  .page-index-customer-service__contact-form {
    padding: 40px 20px;
  }
}

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

  .page-index-customer-service__section-title {
    font-size: 1.8em;
  }

  .page-index-customer-service__btn {
    padding: 10px 20px;
    font-size: 0.95em;
  }

  .page-index-customer-service__form-label {
    font-size: 1em;
  }

  .page-index-customer-service__form-input, .page-index-customer-service__form-textarea {
    padding: 12px;
  }
}