/* style/support.css */
.page-support {
  font-family: 'Arial', sans-serif;
  color: #0A1931;
  line-height: 1.6;
}

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

.page-support__hero {
  background: linear-gradient(135deg, #0A1931 0%, #1a3a66 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-support__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
}

.page-support__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  position: relative;
  z-index: 1;
}

.page-support__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #0A1931;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-support__section-title--light {
  color: #FFD700;
}

.page-support__section-subtitle {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__section-subtitle--light {
  color: #f2f2f2;
}

.page-support__faq {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-support__faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.page-support__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-support__faq-question {
  margin: 0;
  padding: 18px 25px;
  background-color: #0A1931;
  color: #FFD700;
  cursor: pointer;
  font-size: 1.1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-support__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-support__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  background-color: #fdfdfd;
  color: #333;
}

.page-support__faq-answer.open {
  max-height: 200px; /* Adjust as needed based on content */
  padding: 15px 25px;
}

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

.page-support__faq-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-support__tech-support {
  padding: 60px 0;
}

.page-support__bg-dark {
  background-color: #0A1931;
  color: #FFFFFF;
}

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

.page-support__tech-item {
  background-color: #1a3a66;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-support__tech-item:hover {
  transform: translateY(-5px);
}

.page-support__tech-heading {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-support__tech-heading--light {
  color: #FFD700;
}

.page-support__text--light {
  color: #e0e0e0;
}

.page-support__contact {
  padding: 60px 0;
  background-color: #f2f2f2;
}

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

.page-support__method-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-support__method-item:hover {
  transform: translateY(-5px);
}

.page-support__method-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

.page-support__method-title {
  font-size: 1.5em;
  color: #0A1931;
  margin-bottom: 15px;
}

.page-support__responsible-gaming {
  padding: 60px 0;
  text-align: center;
}

.page-support__responsible-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.page-support__responsible-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.page-support__responsible-text {
  text-align: left;
}

.page-support__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

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

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

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

.page-support__btn--secondary:hover {
  background-color: #1a3a66;
  border-color: #1a3a66;
}

.page-support__btn--tertiary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-support__btn--tertiary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-support__link {
  color: #FFD700;
  text-decoration: underline;
}

.page-support__link:hover {
  color: #e6c200;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__hero {
    padding: 60px 0;
  }
  .page-support__responsible-content {
    flex-direction: column;
    text-align: center;
  }
  .page-support__responsible-text {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-subtitle {
    font-size: 0.95em;
  }
  .page-support__faq-question,
  .page-support__tech-heading,
  .page-support__method-title {
    font-size: 1.05em;
  }
  .page-support__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}