/* style/support.css */
.page-support {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text for general readability on dark backgrounds */
  background-color: #0A192F; /* Main background color */
  line-height: 1.6;
}

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

.page-support__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A192F 0%, #1a2a47 100%); /* Dark blue gradient */
  position: relative;
  overflow: hidden;
}

.page-support__hero-content {
  z-index: 1;
  max-width: 800px;
}

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

.page-support__hero-subtitle {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-support__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

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

.page-support__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.2;
  width: 50%;
  height: auto;
  z-index: 0;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-support__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__section-description {
  font-size: 1.1em;
  color: #E0E0E0;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* FAQ Section */
.page-support__faq {
  padding: 80px 0;
  background-color: #0A192F;
  position: relative;
  overflow: hidden;
}

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

.page-support__faq-item {
  background-color: #1a2a47; /* Slightly lighter dark blue for FAQ items */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-support__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__faq-answer {
  color: #C0C0C0;
  margin-bottom: 15px;
}

.page-support__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__text-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-support__faq-image {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: auto;
  opacity: 0.1;
  z-index: 0;
}

/* Guides Section */
.page-support__guides {
  padding: 80px 0;
  background-color: #1a2a47; /* Another shade of dark blue */
}

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

.page-support__guide-card {
  background-color: #0A192F;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.page-support__guide-card:hover {
  transform: translateY(-10px);
}

.page-support__guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-support__guide-title {
  font-size: 1.3em;
  color: #FFD700;
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-support__guide-excerpt {
  color: #C0C0C0;
  padding: 0 20px 20px;
}

.page-support__card-button {
  display: inline-block;
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-support__card-button:hover {
  background-color: #FFD700;
  color: #0A192F;
}

/* Contact Section */
.page-support__contact {
  padding: 80px 0;
  background-color: #0A192F;
}

.page-support__contact .page-support__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

@media (min-width: 768px) {
  .page-support__contact .page-support__container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.page-support__contact-content {
  flex: 1;
  max-width: 600px;
}

.page-support__contact-content .page-support__section-title,
.page-support__contact-content .page-support__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-support__contact-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-support__contact-list li {
  margin-bottom: 15px;
}

.page-support__cta-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-top: 30px;
}

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

.page-support__contact-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-support__contact-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* Promotion Section */
.page-support__promotion {
  padding: 80px 0;
  background-color: #1a2a47;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__promotion-image {
  max-width: 500px;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  opacity: 0.8;
}

.page-support__cta-button--primary {
  background-color: #FFD700;
  color: #0A192F;
  border: 2px solid #FFD700;
}

.page-support__cta-button--primary:hover {
  background-color: #e6c200;
  color: #0A192F;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-support__hero {
    padding: 60px 20px;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-subtitle {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-description {
    font-size: 0.95em;
  }
  .page-support__faq-grid,
  .page-support__guide-grid {
    grid-template-columns: 1fr;
  }
  .page-support__contact .page-support__container {
    flex-direction: column;
    text-align: center;
  }
  .page-support__contact-content .page-support__section-title,
  .page-support__contact-content .page-support__section-description {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-subtitle {
    font-size: 0.9em;
  }
  .page-support__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__section-description {
    font-size: 0.9em;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__faq-item {
    padding: 20px;
  }
  .page-support__guide-title {
    font-size: 1.1em;
  }
  .page-support__contact-list {
    font-size: 1em;
  }
  .page-support__hero-image-wrapper, .page-support__faq-image {
    display: none;
  }
}