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

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

.page-support__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A4B2C; /* Deep Green */
  overflow: hidden;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
  max-width: 1200px;
}

.page-support__hero-content {
  text-align: center;
  max-width: 800px;
  z-index: 1;
}

.page-support__hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #F2FFF6; /* Text Main */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-support__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-support__section-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-support__contact-options-section,
.page-support__faq-section,
.page-support__guides-section,
.page-support__security-section,
.page-support__cta-final {
  padding: 80px 0;
}

.page-support__dark-section {
  background-color: #11271B; /* Card BG */
  padding: 80px 0;
}

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

.page-support__contact-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support__contact-icon {
  width: 200px; /* Minimum size */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-support__contact-card-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-support__contact-card-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6; /* Text Main */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-support__btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 0 15px #57E38D;
}

.page-support__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #2AD16F; /* Adjusted for contrast on dark bg */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #2AD16F;
  cursor: pointer;
  text-align: center;
}

.page-support__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6;
  box-shadow: 0 0 10px rgba(42, 209, 111, 0.6);
}

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

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

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  user-select: none;
  background-color: #0A4B2C; /* Deep Green */
}

.page-support__faq-item[open] .page-support__faq-question {
  background-color: #13994A; /* Darker green when open */
}

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

.page-support__faq-qtext {
  flex-grow: 1;
  margin-right: 15px;
}

.page-support__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #57E38D; /* Glow */
}

.page-support__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #2E7A4E; /* Border */
}

.page-support__faq-answer p {
  margin-bottom: 10px;
  color: #A7D9B8; /* Text Secondary */
}

.page-support__faq-answer p:last-child {
  margin-bottom: 0;
}

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

.page-support__text-link:hover {
  text-decoration: underline;
  color: #F2C14E; /* Gold */
}

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

.page-support__guide-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

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

.page-support__guide-card-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin: 20px 20px 10px;
  font-weight: 600;
}

.page-support__guide-card-text {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin: 0 20px 20px;
  flex-grow: 1;
}

.page-support__guide-card .page-support__btn-secondary {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

.page-support__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-support__responsible-content,
.page-support__security-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-support__responsible-image,
.page-support__security-image {
  width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.page-support__responsible-text,
.page-support__security-text {
  width: 50%;
}

.page-support__responsible-text h3,
.page-support__security-text h3 {
  font-size: 1.8rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: 600;
}

.page-support__responsible-text ul,
.page-support__security-text ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.page-support__responsible-text li,
.page-support__security-text li {
  margin-bottom: 10px;
  font-size: 1rem;
}

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

.page-support__cta-final {
  text-align: center;
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-support__hero-section {
    padding: 40px 20px;
  }
  .page-support__responsible-content,
  .page-support__security-content {
    flex-direction: column;
    text-align: center;
  }
  .page-support__responsible-image,
  .page-support__security-image,
  .page-support__responsible-text,
  .page-support__security-text {
    width: 100%;
  }
  .page-support__responsible-text ul,
  .page-support__security-text ul {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-support {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-support__container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important; /* body already handles header offset */
  }
  .page-support__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-support__hero-description {
    font-size: 1rem;
  }
  .page-support__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .page-support__section-description {
    margin-bottom: 30px;
  }
  .page-support__contact-options-section,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__responsible-gambling-section,
  .page-support__security-section,
  .page-support__cta-final {
    padding: 40px 0;
  }
  .page-support__contact-grid,
  .page-support__guide-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-support__contact-card,
  .page-support__guide-card,
  .page-support__faq-item {
    padding: 20px;
    box-sizing: border-box !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .page-support__contact-icon {
    width: 150px;
    height: auto;
  }
  .page-support__guide-card-image {
    height: 200px;
  }
  .page-support__faq-question {
    padding: 15px 20px;
    font-size: 1.1rem;
  }
  .page-support__faq-answer {
    padding: 15px 20px;
  }
  /* Images responsive */
  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-support__hero-section,
  .page-support__contact-options-section,
  .page-support__faq-section,
  .page-support__guides-section,
  .page-support__responsible-gambling-section,
  .page-support__security-section,
  .page-support__cta-final,
  .page-support__contact-card,
  .page-support__guide-card,
  .page-support__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  /* Buttons responsive */
  .page-support__btn-primary,
  .page-support__btn-secondary,
  .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;
  }
  .page-support__cta-buttons,
  .page-support__button-group,
  .page-support__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-support__cta-buttons {
    display: flex;
    flex-direction: column;
  }
}