:root {
  --primary-color: #0A2038; /* Dark Blue */
  --secondary-color: #FFD700; /* Gold */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f7f6;
  --bg-dark: #071424; /* Slightly darker than primary for contrast */
  --border-color: #e0e0e0;
  --hover-gold: #e6c200; /* Slightly darker gold for hover */
}

.page-support {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

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

/* Hero Section */
.page-support .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--primary-color); /* Dark blue background for hero */
  color: var(--text-light);
}

.page-support .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-support .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-support .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-support .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-support .hero-section h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color); /* Gold for main title */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support .hero-section p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-support .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--primary-color); /* Dark blue text on gold button */
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support .cta-button:hover {
  background: var(--hover-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* General Headings */
.page-support h2 {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-support h3 {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support p {
  font-size: 1em;
  margin-bottom: 15px;
}

/* Support Categories Section */
.page-support .support-categories-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

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

.page-support .category-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-support .category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-support .category-card img {
  width: 100%;
  height: 200px; /* Ensure minimum size and consistent height */
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-support .category-card h3 {
  padding: 20px 20px 10px 20px;
  margin-bottom: 0;
  flex-grow: 1; /* Allow title to take up available space */
}

.page-support .category-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support .category-card h3 a:hover {
  color: var(--secondary-color);
}

.page-support .category-card p {
  padding: 0 20px 15px 20px;
  font-size: 0.95em;
  color: #666666;
}

.page-support .read-more-link {
  display: inline-block;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px 20px 20px;
  transition: color 0.3s ease;
}

.page-support .read-more-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Contact Section */
.page-support .contact-section {
  padding: 60px 0;
  background-color: var(--bg-dark); /* Dark background for contact */
  color: var(--text-light);
}

.page-support .contact-section h2 {
  color: var(--secondary-color);
}

.page-support .contact-section p {
  color: #e0e0e0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-support .contact-card {
  background: var(--primary-color); /* Primary color background for contact cards */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support .contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-support .contact-card img {
  width: 100px; /* Placeholder, actual images will be larger */
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  /* filter: brightness(1.2); Removed as per instruction */
}

.page-support .contact-card h3 {
  color: var(--secondary-color);
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-support .contact-card p {
  color: #cccccc;
  font-size: 0.95em;
  margin-bottom: 25px;
}

.page-support .contact-card .cta-button {
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 12px 25px;
  font-size: 1em;
}

.page-support .contact-card .cta-button:hover {
  background: var(--hover-gold);
}


/* FAQ Section */
.page-support .faq-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.page-support .faq-section h2 {
  color: var(--primary-color);
}

.page-support .faq-section > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-support .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.faq-question:hover {
  background: #f9f9f9;
  border-color: var(--secondary-color);
}

.faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: var(--primary-color); /* Dark blue for active question */
  color: var(--text-light);
}

.faq-item.active .faq-question h3 {
  color: var(--secondary-color); /* Gold for active question title */
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color); /* Gold for toggle */
  transition: transform 0.3s ease, color 0.3s ease;
  line-height: 1; /* Ensure proper vertical alignment */
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--text-light); /* White for active toggle */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
  border: 1px solid var(--border-color);
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Enough to fit content */
  padding: 25px;
  border-color: var(--border-color);
}

.faq-answer p {
  margin-bottom: 0;
  color: var(--text-dark);
}


/* Responsive Design */
@media (max-width: 1024px) {
  .page-support .hero-section h1 {
    font-size: 2.8em;
  }
  .page-support h2 {
    font-size: 2em;
  }
  .page-support h3 {
    font-size: 1.4em;
  }
  .page-support .categories-grid,
  .page-support .contact-methods {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-support .hero-section {
    padding: 40px 15px;
  }
  .page-support .hero-section h1 {
    font-size: 2.2em;
  }
  .page-support .hero-section p {
    font-size: 1em;
  }
  .page-support .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-support h2 {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .page-support h3 {
    font-size: 1.2em;
  }
  .page-support .container {
    padding: 15px;
  }
  .page-support .support-categories-section,
  .page-support .contact-section,
  .page-support .faq-section {
    padding: 40px 0;
  }
  .page-support .categories-grid,
  .page-support .contact-methods {
    grid-template-columns: 1fr;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-support .hero-section h1 {
    font-size: 1.8em;
  }
  .page-support h2 {
    font-size: 1.6em;
  }
  .page-support .cta-button {
    width: 90%;
    max-width: 300px;
    box-sizing: border-box;
  }
}