/* 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, #FFD700);
  color: #fff;
  padding: 80px 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:hero:support,abstract,background]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

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

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

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

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

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

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

.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.1);
  color: #FFD700;
  border-color: #FFD700;
}

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

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

.page-support__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  background-color: #003366;
  color: #FFD700;
  border: 1px solid #003366;
}

.page-support__btn--small:hover {
  background-color: #FFD700;
  color: #003366;
  border-color: #FFD700;
}

.page-support__section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-support__section:nth-of-type(even) {
  background-color: #fff;
}

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

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

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

.page-support__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  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.3em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: 600;
}

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

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

.page-support__contact-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-support__card-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-support__card-description {
  color: #555;
  margin-bottom: 20px;
  font-size: 0.95em;
}

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

.page-support__guide-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-support__guide-card h3 {
  padding: 20px 20px 0;
}

.page-support__guide-title {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  font-weight: 600;
}

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

.page-support__guide-title a:hover {
  color: #FFD700;
}

.page-support__guide-excerpt {
  color: #555;
  padding: 0 20px 20px;
  font-size: 0.95em;
}

.page-support__responsible-gambling {
  text-align: center;
  background-color: #003366;
  color: #fff;
  padding: 80px 0;
}

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

.page-support__responsible-gambling .page-support__section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.page-support__responsible-gambling .page-support__btn--primary {
  background-color: #FFD700;
  color: #003366;
  border-color: #FFD700;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2.5em;
  }

  .page-support__hero-description {
    font-size: 1em;
  }

  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-support__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-support__section-title {
    font-size: 2em;
  }

  .page-support__section-subtitle {
    font-size: 1em;
  }

  .page-support__faq-grid,
  .page-support__contact-methods,
  .page-support__guides-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }

  .page-support__hero-description {
    font-size: 0.9em;
  }

  .page-support__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-support__section {
    padding: 40px 0;
  }

  .page-support__faq-item,
  .page-support__contact-card,
  .page-support__guide-card {
    padding: 20px;
  }

  .page-support__faq-question,
  .page-support__card-title,
  .page-support__guide-title {
    font-size: 1.2em;
  }
}