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

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

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles header offset, small top padding for aesthetic */
  background-color: #08160F;
  text-align: center;
}

.page-support__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

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

.page-support__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em); /* Responsive H1 font size */
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.4);
}

.page-support__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-support__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.3);
}

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

.page-support__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-support__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-support__section-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__contact-methods, .page-support__faq-section, .page-support__guides-section, .page-support__responsible-gaming, .page-support__feedback-section, .page-support__conclusion-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green for sections */
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-support__contact-methods {
  background-color: #11271B; /* Card BG */
}

.page-support__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-support__method-card {
  background-color: #0A4B2C; /* Deep Green */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(42, 209, 111, 0.2);
}

.page-support__method-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-support__method-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-support__method-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
}

.page-support__method-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__faq-item {
  background-color: #11271B; /* Card BG */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-support__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.1em;
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
}

.page-support__faq-item summary:hover {
  background-color: #13994A;
}

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

.page-support__faq-qtext {
  flex-grow: 1;
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-support__faq-item[open] .page-support__faq-toggle {
  content: '−';
}

.page-support__faq-answer {
  padding: 20px;
  padding-top: 0;
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
}

.page-support__faq-answer p {
  margin-bottom: 10px;
}

.page-support__text-link {
  color: #57E38D; /* Glow */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-support__text-link:hover {
  color: #2AD16F;
}

.page-support__guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.page-support__guide-card {
  background-color: #11271B; /* Card BG */
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__guide-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(42, 209, 111, 0.2);
}

.page-support__guide-image {
  width: 100%;
  height: auto;
  max-width: 350px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-support__guide-title {
  font-size: 1.3em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.page-support__guide-text {
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  min-height: 80px;
}

.page-support__guide-button {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 5px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

.page-support__responsible-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.page-support__responsible-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-support__responsible-text-block {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-support__sub-title {
  font-size: 1.6em;
  color: #F2FFF6; /* Text Main */
  margin-top: 25px;
  margin-bottom: 15px;
  border-bottom: 1px solid #2E7A4E; /* Divider */
  padding-bottom: 10px;
}

.page-support__sub-title:first-of-type {
  margin-top: 0;
}

.page-support__responsible-text-block p {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-support__feedback-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

.page-support__feedback-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-support__form-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-support__form-content p {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-support__conclusion-section {
  text-align: center;
  background-color: #08160F;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-support__hero-content {
    padding: 0 40px;
  }
  .page-support__method-grid, .page-support__guide-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 10px 0 40px 0;
  }
  .page-support__main-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 2em;
    padding-top: 30px;
  }
  .page-support__section-description {
    margin-bottom: 30px;
  }
  .page-support__contact-methods, .page-support__faq-section, .page-support__guides-section, .page-support__responsible-gaming, .page-support__feedback-section, .page-support__conclusion-section {
    padding: 40px 0;
    margin-bottom: 15px;
  }
  .page-support__container {
    padding: 0 15px;
  }
  .page-support__method-grid, .page-support__guide-grid {
    grid-template-columns: 1fr;
  }
  .page-support__method-card, .page-support__guide-card {
    padding: 25px;
  }
  .page-support__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }
  .page-support__faq-answer {
    padding: 15px;
    padding-top: 0;
  }
  .page-support__responsible-content, .page-support__feedback-form-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page-support__responsible-image, .page-support__feedback-image {
    max-width: 100%;
  }
  .page-support__responsible-text-block, .page-support__form-content {
    min-width: unset;
    max-width: 100%;
  }
  .page-support__sub-title {
    font-size: 1.4em;
  }

  /* Mobile responsive image styles */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__method-card,
  .page-support__guide-card,
  .page-support__responsible-content,
  .page-support__feedback-form-wrapper,
  .page-support__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-support__hero-section {
    padding-top: 10px !important;
  }

  /* Mobile responsive button styles */
  .page-support__cta-button,
  .page-support__method-button,
  .page-support__guide-button,
  .page-support a[class*="button"],
  .page-support a[class*="btn"] {
    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;
    text-align: center;
  }
  .page-support__method-grid,
  .page-support__guide-grid {
    gap: 15px;
  }
}