.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: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.page-support__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(45deg);
  pointer-events: none;
}

.page-support__title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #fff;
  font-weight: bold;
}

.page-support__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-support__search-box {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__search-input {
  flex-grow: 1;
  border: none;
  padding: 15px 25px;
  font-size: 1em;
  outline: none;
  color: #333;
}

.page-support__search-input::placeholder {
  color: #888;
}

.page-support__search-button {
  background-color: #FFC107;
  color: #000;
  border: none;
  padding: 15px 30px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-support__search-button:hover {
  background-color: #e0a800;
}

.page-support__faq-section, 
.page-support__contact-section, 
.page-support__responsible-gaming, 
.page-support__cta-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

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

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

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

.page-support__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px 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 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

.page-support__link {
  color: #FFC107;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

.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-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px 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 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.page-support__button {
  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;
  font-size: 1em;
}

.page-support__button--primary {
  background-color: #007BFF;
  color: #fff;
  border: 1px solid #007BFF;
}

.page-support__button--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-support__button--secondary {
  background-color: #f0f0f0;
  color: #007BFF;
  border: 1px solid #007BFF;
}

.page-support__button--secondary:hover {
  background-color: #e0e0e0;
  color: #0056b3;
  border-color: #0056b3;
}

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

.page-support__responsible-gaming p {
  max-width: 800px;
  margin: 20px auto 30px auto;
  font-size: 1.1em;
  color: #333;
}

.page-support__cta-section {
  background-color: #007BFF;
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

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

.page-support__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__cta-buttons .page-support__button {
  margin: 0 15px;
  padding: 15px 35px;
  font-size: 1.1em;
  border-radius: 8px;
}

.page-support__cta-buttons .page-support__button--primary {
  background-color: #FFC107;
  color: #000;
  border-color: #FFC107;
}

.page-support__cta-buttons .page-support__button--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #333;
}

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

.page-support__cta-buttons .page-support__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

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

  .page-support__subtitle {
    font-size: 1.1em;
  }

  .page-support__search-box {
    flex-direction: column;
    border-radius: 10px;
    max-width: 90%;
  }

  .page-support__search-input {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
  }

  .page-support__search-button {
    padding: 12px 20px;
    border-radius: 0 0 10px 10px;
  }

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

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

  .page-support__cta-title {
    font-size: 2.2em;
  }

  .page-support__cta-buttons {
    flex-direction: column;
    gap: 20px;
  }

  .page-support__cta-buttons .page-support__button {
    margin: 0;
    width: 80%;
  }
}

@media (max-width: 480px) {
  .page-support__hero {
    padding: 60px 0;
  }

  .page-support__title {
    font-size: 2em;
  }

  .page-support__subtitle {
    font-size: 1em;
  }

  .page-support__search-input {
    font-size: 0.9em;
  }

  .page-support__search-button {
    font-size: 0.9em;
  }

  .page-support__section-heading {
    font-size: 1.8em;
  }

  .page-support__section-description {
    font-size: 0.95em;
  }

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

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

  .page-support__cta-title {
    font-size: 1.8em;
  }

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

  .page-support__cta-buttons .page-support__button {
    padding: 12px 25px;
    font-size: 1em;
    width: 90%;
  }
}