.page-support {
  color: #333333; /* Default text color for light background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f0f2f5;
}

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #1A202C, #FFD700);
  color: #ffffff;
  overflow: hidden;
}

.page-support__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.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 10px 20px rgba(0, 0, 0, 0.2);
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-support__hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__hero-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-support__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #1A202C;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__cta-button:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-support__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1A202C;
}

.page-support__section-description {
  font-size: 17px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-support__dark-bg .page-support__section-title,
.page-support__dark-bg .page-support__section-description {
  color: #ffffff;
}

.page-support__dark-bg {
  background-color: #1A202C;
  color: #f0f0f0;
}

.page-support__light-bg {
  background-color: #f0f2f5;
  color: #333333;
}

.page-support__contact-methods {
  padding: 80px 0;
}

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

.page-support__method-card,
.page-support__security-item,
.page-support__resource-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-support__method-card:hover,
.page-support__security-item:hover,
.page-support__resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-support__method-card img,
.page-support__security-item img,
.page-support__resource-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px;
  min-height: 200px;
}

.page-support__method-card h3,
.page-support__security-item h3,
.page-support__resource-card h3 {
  font-size: 22px;
  color: #1A202C;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-support__method-card p,
.page-support__security-item p,
.page-support__resource-card p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-primary {
  background: #FFD700;
  color: #1A202C;
}

.page-support__btn-primary:hover {
  background: #e6c200;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-support__btn-secondary {
  background: #1A202C;
  color: #ffffff;
  border-color: #1A202C;
}

.page-support__btn-secondary:hover {
  background: #2c3e50;
  border-color: #2c3e50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-support__faq-section {
  padding: 80px 0;
}

.page-support__faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #FFD700;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
  position: relative;
  color: #1A202C;
  font-weight: 600;
}

.page-support__faq-item.active .page-support__faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: #e6c200;
}

.page-support__faq-question:hover {
  background: #e6c200;
}

.page-support__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  pointer-events: none; /* Prevent h3 from blocking click */
  color: #1A202C;
}

.page-support__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #1A202C;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-support__faq-item.active .page-support__faq-toggle {
  transform: rotate(45deg);
  color: #1A202C;
}

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
  padding: 0 25px;
  opacity: 0;
  background: #fdfdfd;
  color: #333333;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 2000px !important; /* Ensure it expands fully */
  padding: 20px 25px !important;
  opacity: 1;
  border-radius: 0 0 10px 10px;
  box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-support__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* Security Section */
.page-support__security-section {
  padding: 80px 0;
}

.page-support__security-item {
  background: #ffffff;
  color: #333333;
}

.page-support__security-item img {
  object-fit: contain;
}

/* Resources Section */
.page-support__resources-section {
  padding: 80px 0;
}

.page-support__resource-card {
  background: #ffffff;
  color: #333333;
}

.page-support__resource-card img {
  object-fit: cover;
}

/* Bottom CTA */
.page-support__cta-bottom {
  padding: 80px 0;
  text-align: center;
}

.page-support__cta-content {
  max-width: 900px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-content h1 {
    font-size: 42px;
  }
  .page-support__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__hero-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-support__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-support__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-support__container {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-support__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-support__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }
  .page-support__methods-grid,
  .page-support__security-grid,
  .page-support__resources-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support__method-card,
  .page-support__security-item,
  .page-support__resource-card {
    padding: 25px;
  }
  .page-support__method-card img,
  .page-support__security-item img,
  .page-support__resource-card img {
    
    min-width: 200px !important;
    min-
    max-width: 100% !important;
    width: 100% !important;
  }
  .page-support__method-card h3,
  .page-support__security-item h3,
  .page-support__resource-card h3 {
    font-size: 20px;
  }
  .page-support__method-card p,
  .page-support__security-item p,
  .page-support__resource-card p {
    font-size: 15px;
  }
  .page-support__btn-primary,
  .page-support__btn-secondary {
    padding: 10px 20px;
    font-size: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-support__faq-question {
    padding: 18px 20px;
  }
  .page-support__faq-question h3 {
    font-size: 16px;
  }
  .page-support__faq-toggle {
    font-size: 24px;
    width: 26px;
    height: 26px;
  }
  .page-support__faq-answer {
    padding: 0 20px;
  }
  .page-support__faq-item.active .page-support__faq-answer {
    padding: 15px 20px !important;
  }
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__cta-buttons,
  .page-support__button-group,
  .page-support__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
}