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

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

.page-support__hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,pattern,dark_blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

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

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

.page-support__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.page-support__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
}

.page-support__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-support__btn--primary:hover {
  background-color: #e6b800;
  color: #002244;
  transform: translateY(-3px);
}

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

.page-support__btn--secondary:hover {
  background-color: #fff;
  color: #003366;
  transform: translateY(-3px);
}

.page-support__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 15px;
  padding-top: 60px;
}

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

.page-support__faq-section {
  padding: 80px 0;
  background-color: #f8f8f8;
  position: relative;
  overflow: hidden;
}

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

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

.page-support__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-support__faq-question {
  width: 100%;
  background-color: #003366;
  color: #fff;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  text-align: left;
  border: none;
  cursor: pointer;
  outline: none;
  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 {
  background-color: #002a52;
}

.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.4s ease-out, padding 0.4s ease-out;
  background-color: #fdfdfd;
  color: #444;
}

.page-support__faq-answer p {
  padding: 20px 0;
  margin: 0;
}

.page-support__faq-answer.active {
  max-height: 300px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-support__faq-answer a {
  color: #003366;
  text-decoration: underline;
}

.page-support__faq-answer a:hover {
  color: #FFCC00;
}

.page-support__contact-section {
  padding: 80px 0;
  background-color: #fff;
}

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

.page-support__contact-card {
  background-color: #f0f5f9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-support__contact-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.page-support__card-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-support__card-description {
  color: #666;
  margin-bottom: 25px;
}

.page-support__btn--outline {
  background-color: transparent;
  color: #003366;
  border: 2px solid #003366;
  padding: 10px 25px;
  font-size: 1em;
}

.page-support__btn--outline:hover {
  background-color: #003366;
  color: #fff;
}

.page-support__responsible-gaming-section {
  padding: 80px 0;
  background-color: #003366;
  color: #fff;
}

.page-support__responsible-gaming-content {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 50px;
}

.page-support__responsible-gaming-image {
  flex: 1;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-support__responsible-gaming-text {
  flex: 2;
}

.page-support__responsible-gaming-text p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-support__btn--text {
  color: #FFCC00;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  font-size: 1.1em;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__btn--text:hover {
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__responsible-gaming-content {
    flex-direction: column;
    text-align: center;
  }
  .page-support__responsible-gaming-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__section-subtitle {
    font-size: 0.95em;
  }
  .page-support__contact-methods {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-support__faq-answer.active {
    padding: 15px 20px;
  }
  .page-support__card-title {
    font-size: 1.5em;
  }
  .page-support__contact-icon {
    width: 60px;
    height: 60px;
  }
}