/* style/support.css */
.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #2C3E50; /* Dark blue-grey for main text */
  background-color: #f8f8f8;
}

.page-support a {
  text-decoration: none;
  color: #C0392B; /* Primary red for links */
}

.page-support a:hover {
  text-decoration: underline;
  color: #86281e; /* Darker red on hover */
}

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

.page-support__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-support__btn--primary {
  background-color: #C0392B; /* Primary red */
  color: #ffffff;
}

.page-support__btn--primary:hover {
  background-color: #86281e; /* Darker red */
  color: #ffffff;
  text-decoration: none;
}

.page-support__btn--secondary {
  background-color: #2C3E50; /* Secondary dark blue-grey */
  color: #ffffff;
  margin-left: 15px;
}

.page-support__btn--secondary:hover {
  background-color: #1a252f; /* Even darker blue-grey */
  color: #ffffff;
  text-decoration: none;
}

.page-support__btn--outline {
  background-color: transparent;
  color: #C0392B;
  border: 2px solid #C0392B;
}

.page-support__btn--outline:hover {
  background-color: #C0392B;
  color: #ffffff;
  text-decoration: none;
}

.page-support__btn--link {
  background-color: transparent;
  color: #2C3E50;
  border: 2px solid #2C3E50;
  margin-left: 10px;
}

.page-support__btn--link:hover {
  background-color: #2C3E50;
  color: #ffffff;
  text-decoration: none;
}

/* Hero Section */
.page-support__hero-section {
  background: linear-gradient(135deg, #C0392B, #2C3E50);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-support__hero-section .page-support__container {
  position: relative;
  z-index: 2;
}

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-support__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  line-height: 1.8;
  color: #f0f0f0;
}

.page-support__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

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

/* Topics Section */
.page-support__topics-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #C0392B;
  text-align: center;
  margin-bottom: 20px;
}

.page-support__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #2C3E50;
}

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

.page-support__topic-card {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-support__topic-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  color: #C0392B;
}

.page-support__topic-title {
  font-size: 1.5em;
  color: #2C3E50;
  margin-bottom: 15px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-support__topic-title a {
  color: #2C3E50;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__topic-title a:hover {
  color: #C0392B;
  text-decoration: none;
}

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

.page-support__card-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

/* CTA Section */
.page-support__cta-section {
  background-color: #2C3E50; /* Secondary dark blue-grey */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-support__cta-section .page-support__container {
  position: relative;
  z-index: 2;
}

.page-support__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-support__cta-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
  color: #f0f0f0;
}

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

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

  .page-support__hero-description,
  .page-support__section-intro,
  .page-support__cta-description {
    font-size: 1em;
  }

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

  .page-support__cta-title {
    font-size: 2.2em;
  }

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

  .page-support__hero-cta-group {
    flex-direction: column;
    gap: 10px;
  }

  .page-support__btn--secondary {
    margin-left: 0;
  }

  .page-support__card-actions {
    flex-direction: column;
    gap: 10px;
  }

  .page-support__btn--link {
    margin-left: 0;
  }
}

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

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

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

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