/* style/support.css */
.page-support {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A192F; /* Primary dark blue background */
  line-height: 1.6;
}

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

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

.page-support-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%23FFD700" stroke-width="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" opacity="0.05"/></svg>');
  opacity: 0.1;
  z-index: 0;
}

.page-support-hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary gold for titles */
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page-support-hero-description {
  font-size: 1.2em;
  color: #B0B0B0; /* Slightly lighter grey for descriptions */
  margin-bottom: 40px;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.page-support-hero-image-wrapper {
  width: 100%;
  max-width: 900px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.page-support-hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-support-section-title {
  font-size: 2.8em;
  color: #FFD700; /* Auxiliary gold for section titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-support-section-subtitle {
  font-size: 1.1em;
  color: #B0B0B0;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-support-faq-section {
  padding: 60px 0;
  background-color: #1A2A40; /* Slightly lighter dark blue for contrast */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  width: 100%;
}

.page-support-faq-item {
  background-color: #0A192F; /* Primary dark blue for FAQ items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700; /* Gold accent */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support-faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-support-faq-answer {
  color: #E0E0E0;
  font-size: 1em;
}

.page-support-faq-image-wrapper {
  width: 100%;
  max-width: 700px;
  margin-top: 50px;
}

.page-support-faq-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support-contact-section {
  padding: 60px 0;
  background-color: #0A192F;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support-contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
  width: 100%;
}

.page-support-contact-item {
  background-color: #1A2A40;
  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;
}

.page-support-contact-item:hover {
  transform: translateY(-5px);
  background-color: #2a3d54; /* Slightly lighter on hover */
}

.page-support-contact-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-support-contact-description {
  color: #B0B0B0;
  margin-bottom: 25px;
}

.page-support-contact-image-wrapper {
  width: 100%;
  max-width: 800px;
  margin-top: 50px;
}

.page-support-contact-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-support-cta-section {
  padding: 80px 0;
  background: linear-gradient(45deg, #1A2A40 0%, #0A192F 100%); /* Dark blue gradient */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support-cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-support-cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-support-cta-image-wrapper {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
}

.page-support-cta-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-support-btn {
  display: inline-block;
  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, box-shadow 0.3s ease;
}

.page-support-btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-support-btn-primary:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-support-btn-secondary {
  background-color: #2A3D54; /* Slightly lighter dark blue */
  color: #FFD700; /* Gold text */
  border: 1px solid #FFD700;
}

.page-support-btn-secondary:hover {
  background-color: #3d526e; /* Darker on hover */
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.page-support-btn-lg {
  padding: 18px 35px;
  font-size: 1.3em;
}

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

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

  .page-support-hero-description,
  .page-support-cta-description {
    font-size: 1em;
  }

  .page-support-section-title,
  .page-support-cta-title {
    font-size: 2em;
  }

  .page-support-faq-grid,
  .page-support-contact-methods {
    grid-template-columns: 1fr;
  }

  .page-support-faq-item,
  .page-support-contact-item {
    padding: 20px;
  }

  .page-support-faq-question {
    font-size: 1.2em;
  }

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

  .page-support-btn-lg {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-support-hero-section,
  .page-support-faq-section,
  .page-support-contact-section,
  .page-support-cta-section {
    padding: 50px 0;
  }
}

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

  .page-support-section-title,
  .page-support-cta-title {
    font-size: 1.8em;
  }

  .page-support-hero-description,
  .page-support-section-subtitle,
  .page-support-cta-description {
    font-size: 0.9em;
  }
}