.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 {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

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

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

.page-support__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.page-support__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #007bff;
  font-weight: bold;
}

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

.page-support__faq {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-support__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-support__faq-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-support__faq-question {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__faq-answer {
  font-size: 1em;
  color: #666;
}

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

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

.page-support__contact-card {
  text-align: center;
  background-color: #f1f7fc;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-support__contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-support__contact-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  object-fit: contain;
}

.page-support__card-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__contact-card p {
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

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

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

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

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

.page-support__cta-actions {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.page-support__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-support__responsible-gaming {
  padding: 80px 0;
  background-color: #f9f9f9;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__hero-description {
    font-size: 1.1em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__cta-title {
    font-size: 2.5em;
  }
  .page-support__faq-grid, .page-support__contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-support__hero {
    padding: 80px 0;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__hero-actions, .page-support__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-support__btn--large {
    width: 100%;
    max-width: 300px;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__faq, .page-support__contact-options, .page-support__cta, .page-support__responsible-gaming {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__hero-description {
    font-size: 0.9em;
  }
  .page-support__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__cta-title {
    font-size: 2em;
  }
  .page-support__cta-description {
    font-size: 1em;
  }
  .page-support__faq-item, .page-support__contact-card {
    padding: 25px 15px;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__card-title {
    font-size: 1.4em;
  }
}