.page-support {
  color: #333333; /* Default text color for light body background */
}

.page-support__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #003366;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

.page-support__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.page-support__hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700;
}

.page-support__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-support__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-support__sections-overview {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.page-support__sections-title {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 40px;
}

.page-support__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-support__card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.page-support__card-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 25px;
  border-radius: 50%;
  background-color: #f0f8ff;
  padding: 15px;
}

.page-support__card-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

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

.page-support__card-title a:hover {
  color: #FFD700;
}

.page-support__card-text {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555555;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-support__card-link {
  display: inline-block;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-support__card-link:hover {
  color: #003366;
  border-color: #003366;
}

.page-support__live-chat {
  background-color: #003366;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin: 60px 0;
}

.page-support__live-chat-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-support__live-chat-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

.page-support__live-chat-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 18px 40px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-support__live-chat-button:hover {
  background-color: #e6c200;
  transform: translateY(-5px);
}

.page-support__additional-resources {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
}

.page-support__resources-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
}

.page-support__resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-support__resource-item {
  background-color: #f0f8ff;
  border-left: 5px solid #FFD700;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: background-color 0.3s ease;
}

.page-support__resource-item:hover {
  background-color: #e6f2ff;
}

.page-support__resource-heading {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
}

.page-support__resource-heading a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__resource-heading a:hover {
  color: #FFD700;
}

.page-support__resource-text {
  font-size: 1em;
  color: #555555;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__sections-title,
  .page-support__resources-title {
    font-size: 2em;
  }
  .page-support__live-chat-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 80px);
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__sections-overview,
  .page-support__additional-resources {
    margin: 40px auto;
    padding: 20px;
  }
  .page-support__card-grid {
    grid-template-columns: 1fr;
  }
  .page-support__live-chat {
    padding: 60px 20px;
  }
  .page-support__live-chat-title {
    font-size: 2em;
  }
  .page-support__live-chat-description {
    font-size: 1em;
  }
  .page-support__live-chat-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-support__resources-grid {
    grid-template-columns: 1fr;
  }
  .page-support__card-icon,
  .page-support__hero-image,
  .page-support__card img,
  .page-support__resource-item img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure all images within .page-support are responsive and not smaller than 200px */
  .page-support img {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__sections-title,
  .page-support__resources-title {
    font-size: 1.8em;
  }
  .page-support__live-chat-title {
    font-size: 1.8em;
  }
  .page-support__card-title {
    font-size: 1.5em;
  }
  .page-support__resource-heading {
    font-size: 1.3em;
  }
}