.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #121212; /* Inherited from shared, but for clarity */
}

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

.page-support__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #0A2463; /* Main brand color for hero */
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
}

.page-support__hero-content {
  max-width: 900px;
  z-index: 1;
  position: relative;
}

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold accent for title */
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-support__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-support__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

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

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

.page-support__faq-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-support__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-support__faq-item {
  background-color: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #0A2463; /* Main brand color */
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-support__faq-question:hover {
  background-color: #1c3d82;
}

.page-support__faq-item-title {
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #ffffff;
}

.page-support__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  font-weight: normal;
  transition: transform 0.3s ease;
  color: #FFD700;
}

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

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #333333;
  color: #f0f0f0;
}

.page-support__faq-item.active .page-support__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 20px 25px;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
}

.page-support__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-support__contact-section {
  padding: 80px 0;
  background-color: #0A2463; /* Dark brand color for section */
  color: #ffffff;
  text-align: center;
}

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

.page-support__contact-card {
  background-color: #1c3d82;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-support__contact-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}

.page-support__contact-card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-support__contact-card p {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__guides-section {
  padding: 80px 0;
  background-color: #121212;
}

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

.page-support__guide-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-support__guide-card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-support__guide-card-title a:hover {
  text-decoration: underline;
}

.page-support__guide-card p {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-support__btn-text {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 20px 20px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  color: #FFD700;
  border: 2px solid #FFD700;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: flex-start;
}

.page-support__btn-text:hover {
  background-color: #FFD700;
  color: #0A2463;
}

.page-support__responsible-gaming-section {
  padding: 80px 0;
  background-color: #FFD700; /* Gold accent for section */
  color: #333333;
}

.page-support__responsible-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-support__responsible-image {
  width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-support__responsible-text {
  width: 50%;
  text-align: left;
}

.page-support__responsible-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #333333;
}

/* Common button styles */
.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  margin: 10px;
}

.page-support__btn-primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-support__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-support__btn-secondary {
  background-color: transparent;
  color: #0A2463;
  border: 2px solid #0A2463;
}

.page-support__btn-secondary:hover {
  background-color: #0A2463;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__responsible-content {
    flex-direction: column;
  }
  .page-support__responsible-image,
  .page-support__responsible-text {
    width: 100%;
  }
  .page-support__btn-primary, .page-support__btn-secondary {
    font-size: 1em;
    padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-description {
    font-size: 0.95em;
  }
  .page-support__faq-question {
    padding: 15px 20px;
  }
  .page-support__faq-item-title {
    font-size: 1.1em;
  }
  .page-support__faq-answer {
    padding: 15px 20px;
  }
  .page-support__contact-section,
  .page-support__guides-section,
  .page-support__responsible-gaming-section {
    padding: 60px 0;
  }
  .page-support__contact-methods,
  .page-support__guides-grid {
    grid-template-columns: 1fr;
  }
  .page-support__contact-card,
  .page-support__guide-card {
    margin: 0 15px;
  }
  .page-support__responsible-text {
    padding: 0 15px;
  }
  
  /* Mobile responsive for images */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-support__hero-image-wrapper,
  .page-support__contact-card,
  .page-support__guide-card,
  .page-support__responsible-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Mobile responsive for buttons */
  .page-support__btn-primary,
  .page-support__btn-secondary,
  .page-support a[class*="button"],
  .page-support a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  .page-support__hero-content .page-support__btn-primary {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .page-support__responsible-text .page-support__btn-primary,
  .page-support__responsible-text .page-support__btn-secondary {
    display: block !important;
    margin: 10px auto !important;
  }
  
  .page-support__contact-card .page-support__btn-secondary {
    width: auto !important;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__hero-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__contact-card,
  .page-support__guide-card {
    padding: 20px;
  }
}