.page-support {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  overflow: hidden;
  text-align: center;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-support__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-support__main-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #F2FFF6;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-support__description {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-support__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-support__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-support__cta-button--secondary {
  background: #11271B;
  color: #F2FFF6;
  border: 1px solid #2E7A4E;
}

.page-support__cta-button--secondary:hover {
  background: #2E7A4E;
}

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

.page-support__section-title {
  font-size: 2em;
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 20px;
}

.page-support__section-description {
  font-size: 1em;
  color: #A7D9B8;
  text-align: center;
  margin-bottom: 40px;
}

.page-support__faq-section {
  background-color: #0A4B2C;
  padding: 60px 0;
}

.page-support__faq-list {
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-support__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-support__faq-item[open] > .page-support__faq-question {
  background-color: #1E3A2A;
}

.page-support__faq-question::-webkit-details-marker {
  display: none;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #57E38D;
}

.page-support__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #A7D9B8;
  line-height: 1.7;
}

.page-support__quick-guide-section {
  padding: 60px 0;
}

.page-support__guide-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-support__guide-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-support__guide-title {
  font-size: 1.3em;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-support__guide-item p {
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__guide-link {
  display: inline-block;
  color: #57E38D;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-support__guide-link:hover {
  color: #F2C14E;
}

.page-support__contact-section {
  background-color: #0A4B2C;
  padding: 60px 0;
}

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

.page-support__contact-card {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
}

.page-support__contact-title {
  font-size: 1.3em;
  color: #F2FFF6;
  margin-bottom: 15px;
}

.page-support__contact-card p {
  color: #A7D9B8;
  margin-bottom: 20px;
}

.page-support__responsible-gambling-section {
  padding: 60px 0;
  text-align: center;
}

.page-support__image-wrapper {
  margin-top: 40px;
  text-align: center;
}

.page-support__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-support__main-title {
    font-size: 2em;
  }

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

  .page-support__hero-content,
  .page-support__container {
    padding: 20px 15px;
  }

  .page-support__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

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

  .page-support__guide-list,
  .page-support__contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__cta-button,
  .page-support__guide-link {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__cta-button.page-support__cta-button--secondary {
    margin-top: 10px;
  }

  .page-support__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-support__hero-section,
  .page-support__faq-section,
  .page-support__quick-guide-section,
  .page-support__contact-section,
  .page-support__responsible-gambling-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-support__hero-section {
    padding-top: 10px !important;
  }
}