/* style/support.css */
.page-support {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFFFFF; /* Default text color for dark background */
  background-color: #000000; /* Main background color */
}

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

.page-support__hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-support__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9));
  z-index: 2;
}

.page-support__hero-content {
  position: relative;
  z-index: 3;
  color: #FFD700;
}

.page-support__title {
  font-size: 3.5em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFD700;
}

.page-support__subtitle {
  font-size: 1.4em;
  max-width: 800px;
  margin: 0 auto;
  color: #E0E0E0;
}

.page-support__introduction,
.page-support__detail-pages,
.page-support__cta {
  padding: 60px 0;
}

.page-support__introduction {
  background-color: #111111;
}

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

.page-support__text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #CCCCCC;
}

.page-support__detail-pages {
  background-color: #000000;
}

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

.page-support__card {
  background-color: #1a1a1a;
  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;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 300px;
}

.page-support__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-support__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-support__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__card-title a:hover {
  color: #DC143C; /* Accent color on hover */
}

.page-support__card-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__button {
  display: inline-block;
  background-color: #FFD700;
  color: #000000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-support__button:hover {
  background-color: #DC143C;
  color: #FFFFFF;
}

.page-support__button--primary {
  background-color: #DC143C;
  color: #FFFFFF;
}

.page-support__button--primary:hover {
  background-color: #FFD700;
  color: #000000;
}

.page-support__cta {
  background-color: #111111;
  text-align: center;
  padding: 80px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-support__hero {
    height: 300px;
  }

  .page-support__title {
    font-size: 2.5em;
  }

  .page-support__subtitle {
    font-size: 1.1em;
  }

  .page-support__heading {
    font-size: 2em;
  }

  .page-support__introduction,
  .page-support__detail-pages,
  .page-support__cta {
    padding: 40px 0;
  }

  .page-support__grid {
    grid-template-columns: 1fr;
  }

  .page-support__card {
    padding: 25px;
  }

  .page-support__card-title {
    font-size: 1.3em;
  }

  .page-support__card-description {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-support__hero {
    height: 250px;
  }

  .page-support__title {
    font-size: 2em;
  }

  .page-support__subtitle {
    font-size: 1em;
  }

  .page-support__heading {
    font-size: 1.8em;
  }

  .page-support__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}