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

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

.page-support__hero {
  background: linear-gradient(135deg, #007bff, #4da3ff);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-support__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.page-support__section-subtitle {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

.page-support__faq, .page-support__contact, .page-support__responsible-gaming, .page-support__cta {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-support__faq {
  background-color: #fff;
}

.page-support__accordion {
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-support__accordion-item {
  border-bottom: 1px solid #eee;
}

.page-support__accordion-item:last-child {
  border-bottom: none;
}

.page-support__accordion-header {
  background-color: #f0f8ff;
  color: #007bff;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-support__accordion-header:hover {
  background-color: #e0f0ff;
}

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

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

.page-support__accordion-content {
  padding: 0 25px;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support__accordion-content p {
  margin-bottom: 15px;
  color: #555;
}

.page-support__accordion-content .page-support__button--secondary {
  margin-bottom: 15px;
}

.page-support__contact {
  background-color: #f0f8ff;
}

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

.page-support__method-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-top: 5px solid #ffc107;
}

.page-support__method-item h3 {
  color: #007bff;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-support__method-item p {
  color: #666;
  margin-bottom: 20px;
}

.page-support__responsible-gaming {
  background-color: #fff;
}

.page-support__cta {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-support__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
}

.page-support__cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #e0e0e0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-support__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.page-support__button--primary {
  background-color: #ffc107;
  color: #333;
  border: 2px solid #ffc107;
}

.page-support__button--primary:hover {
  background-color: #e0a800;
  color: #fff;
  transform: translateY(-2px);
}

.page-support__button--secondary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}

.page-support__button--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-support__button--tertiary {
  background-color: #fff;
  color: #007bff;
  border: 2px solid #007bff;
}

.page-support__button--tertiary:hover {
  background-color: #e0f0ff;
  transform: translateY(-2px);
}

.page-support__button--text {
  color: #007bff;
  text-decoration: underline;
  padding: 0;
  border: none;
  background: none;
}

.page-support__button--text:hover {
  color: #0056b3;
  text-decoration: none;
}

.page-support__section-image {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
  width: 200px;
  height: 200px;
  object-fit: contain;
}

.page-support__faq .page-support__section-image {
  top: 50px;
  right: 50px;
}

.page-support__contact .page-support__section-image {
  bottom: 50px;
  left: 50px;
}

.page-support__responsible-gaming .page-support__section-image {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
  width: 300px;
  height: 300px;
}

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

@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__section-subtitle {
    font-size: 0.9em;
  }
  .page-support__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-support__accordion-content {
    padding: 0 20px;
  }
  .page-support__method-item {
    padding: 20px;
  }
  .page-support__method-item h3 {
    font-size: 1.3em;
  }
  .page-support__cta-title {
    font-size: 2em;
  }
  .page-support__cta-description {
    font-size: 1em;
  }
  .page-support__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-support__button {
    width: 80%;
    max-width: 300px;
  }
  .page-support__section-image {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__hero, .page-support__faq, .page-support__contact, .page-support__responsible-gaming, .page-support__cta {
    padding: 40px 0;
  }
}