/* style/support-hotline.css */
.page-support-hotline {
  font-family: 'Arial', sans-serif;
  color: #f5e6ce; /* Light text for dark background, WCAG AA contrast against #0A1931 and #1a2c4a */
  background-color: #0A1931;
  line-height: 1.6;
}

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

.page-support-hotline__hero-section {
  background: linear-gradient(135deg, #0A1931, #2a3d5f);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support-hotline__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title, high contrast against dark background */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-support-hotline__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0; /* Slightly darker light text for subtle contrast */
}

.page-support-hotline__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931; /* Dark text on gold button for high contrast */
  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, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-support-hotline__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-support-hotline__cta-button--primary {
  background-color: #FFD700;
  color: #0A1931;
}

.page-support-hotline__cta-button--secondary {
  background-color: #545e6f; /* A mid-tone dark blue for secondary action */
  color: #f5e6ce;
  margin-left: 15px;
}

.page-support-hotline__cta-button--tertiary {
  background-color: #0A1931;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-support-hotline__cta-button--secondary:hover {
  background-color: #6c7583;
}

.page-support-hotline__cta-button--tertiary:hover {
  background-color: #1a2c4a;
}

.page-support-hotline__cta-button--final {
  margin-top: 30px;
}

.page-support-hotline__content-section {
  padding: 60px 0;
  background-color: #0A1931;
}

.page-support-hotline__content-section:nth-of-type(even) {
  background-color: #1a2c4a; /* Slightly lighter dark for contrast between sections */
}

.page-support-hotline__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-support-hotline__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-support-hotline__features-grid, .page-support-hotline__methods-grid, .page-support-hotline__commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-support-hotline__feature-item, .page-support-hotline__method-card, .page-support-hotline__commitment-item {
  background-color: #1a2c4a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid #FFD700; /* Gold border for emphasis */
}

.page-support-hotline__feature-item:hover, .page-support-hotline__method-card:hover, .page-support-hotline__commitment-item:hover {
  transform: translateY(-5px);
  background-color: #2a3d5f;
}

.page-support-hotline__feature-icon, .page-support-hotline__method-icon, .page-support-hotline__commitment-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7)); /* Subtle glow for icons */
}

.page-support-hotline__feature-title, .page-support-hotline__method-title, .page-support-hotline__commitment-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support-hotline__feature-description, .page-support-hotline__method-description, .page-support-hotline__commitment-description {
  font-size: 1em;
  color: #cccccc;
}

.page-support-hotline__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-support-hotline__list li {
  background-color: #1a2c4a;
  margin-bottom: 10px;
  padding: 15px 25px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  color: #e0e0e0;
  transition: background-color 0.3s ease;
}

.page-support-hotline__list li:hover {
  background-color: #2a3d5f;
}

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

.page-support-hotline__method-info {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-support-hotline__highlight-text {
  color: #FFD700;
  font-weight: bold;
}

.page-support-hotline__cta-buttons {
  text-align: center;
  margin-top: 50px;
}

.page-support-hotline__conclusion-section {
  background-color: #1a2c4a;
  padding: 80px 0;
  text-align: center;
}

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

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

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

  .page-support-hotline__cta-button--secondary, .page-support-hotline__cta-button--tertiary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-support-hotline__features-grid, .page-support-hotline__methods-grid, .page-support-hotline__commitment-grid {
    grid-template-columns: 1fr;
  }
}

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

  .page-support-hotline__hero-description {
    font-size: 1em;
  }

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

  .page-support-hotline__feature-item, .page-support-hotline__method-card, .page-support-hotline__commitment-item {
    padding: 20px;
  }

  .page-support-hotline__feature-title, .page-support-hotline__method-title, .page-support-hotline__commitment-title {
    font-size: 1.4em;
  }

  .page-support-hotline__cta-buttons a {
    display: block;
    width: 90%;
    margin: 10px auto;
  }
}