.page-support-phone-hotline {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark background */
}

.page-support-phone-hotline__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-support-phone-hotline__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
}

.page-support-phone-hotline__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700; /* Gold for main title */
  font-weight: bold;
}

.page-support-phone-hotline__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #cccccc; /* Lighter gray for subtitle */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support-phone-hotline__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA buttons */
  color: #0A192F; /* Dark blue text on gold button */
  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;
  border: none;
  cursor: pointer;
}

.page-support-phone-hotline__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-support-phone-hotline__content-section {
  padding: 80px 0;
  background-color: #0A192F;
}

.page-support-phone-hotline__section-heading {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section headings */
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.page-support-phone-hotline__section-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 20px auto 0;
}

.page-support-phone-hotline__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-support-phone-hotline__grid-item {
  background-color: #1a2a40; /* Slightly lighter dark blue for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-support-phone-hotline__grid-item:hover {
  transform: translateY(-10px);
}

.page-support-phone-hotline__image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 2px solid #FFD700;
}

.page-support-phone-hotline__item-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for item titles */
  margin-bottom: 15px;
}

.page-support-phone-hotline__item-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-support-phone-hotline__hotline-details {
  background-color: #0A192F;
  padding: 80px 0;
}

.page-support-phone-hotline__details-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.page-support-phone-hotline__contact-card {
  background-color: #1a2a40;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  flex: 1 1 45%; /* Allow cards to take up half width on larger screens */
  max-width: 500px;
}

.page-support-phone-hotline__card-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-support-phone-hotline__phone-number, .page-support-phone-hotline__email-address {
  font-size: 2.2em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support-phone-hotline__availability, .page-support-phone-hotline__note {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 10px;
}

.page-support-phone-hotline__small-button {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 20px;
}

.page-support-phone-hotline__faq-section {
  padding: 80px 0;
  background-color: #0A192F;
}

.page-support-phone-hotline__faq-item {
  background-color: #1a2a40;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-support-phone-hotline__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-support-phone-hotline__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-support-phone-hotline__faq-question.active::after {
  content: '-';
}

.page-support-phone-hotline__faq-answer {
  font-size: 1.1em;
  color: #e0e0e0;
  line-height: 1.6;
  display: none; /* Hidden by default, toggled by JS */
  padding-top: 10px;
}

.page-support-phone-hotline__cta-bottom {
  padding: 80px 0;
  text-align: center;
  background-color: #1a2a40;
  color: #e0e0e0;
}

.page-support-phone-hotline__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 40px;
  border: 3px solid #FFD700;
}

.page-support-phone-hotline__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-support-phone-hotline__cta-description {
  font-size: 1.2em;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #cccccc;
}

.page-support-phone-hotline__button-group .page-support-phone-hotline__cta-button {
  margin: 0 15px;
}

.page-support-phone-hotline__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-support-phone-hotline__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-support-phone-hotline__title {
    font-size: 2.5em;
  }

  .page-support-phone-hotline__subtitle {
    font-size: 1.1em;
  }

  .page-support-phone-hotline__section-heading {
    font-size: 2em;
  }

  .page-support-phone-hotline__grid {
    grid-template-columns: 1fr;
  }

  .page-support-phone-hotline__details-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .page-support-phone-hotline__contact-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .page-support-phone-hotline__phone-number, .page-support-phone-hotline__email-address {
    font-size: 1.8em;
  }

  .page-support-phone-hotline__cta-title {
    font-size: 2.2em;
  }

  .page-support-phone-hotline__button-group {
    flex-direction: column;
    gap: 20px;
  }

  .page-support-phone-hotline__button-group .page-support-phone-hotline__cta-button {
    margin: 0;
    width: 80%;
    max-width: 300px;
  }
}

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

  .page-support-phone-hotline__section-heading {
    font-size: 1.8em;
  }

  .page-support-phone-hotline__cta-title {
    font-size: 1.8em;
  }
}