.page-support {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #f8f8f8;
  line-height: 1.6;
}

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #f0f7fa;
  border-bottom: 5px solid #26A9E0;
}

.page-support__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-support__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-support__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-support__description {
  font-size: 18px;
  color: #555555;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #EA7C07;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(234, 124, 7, 0.4);
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__cta-button:hover {
  background: #d66a00;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(234, 124, 7, 0.6);
}

.page-support__section {
  padding: 60px 20px;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-width: 100%;
  box-sizing: border-box;
}

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

.page-support__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-support__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #EA7C07;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-support__text-block {
  font-size: 17px;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 20px;
  text-align: justify;
}

/* FAQ Section */
.page-support__faq-section {
  background-color: #f0f7fa;
}

.page-support__faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.page-support__faq-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

details.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

details.page-support__faq-item summary.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

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

details.page-support__faq-item summary.page-support__faq-question:hover {
  background: #f5f5f5;
  border-color: #dcdcdc;
}

.page-support__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}

.page-support__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #26A9E0;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
  transition: transform 0.3s ease;
}

details[open] .page-support__faq-toggle {
  transform: rotate(45deg);
}

details.page-support__faq-item .page-support__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-top: 1px solid #eeeeee;
  border-radius: 0 0 10px 10px;
}

.page-support__faq-answer p {
  font-size: 16px;
  color: #555555;
  margin: 0;
  padding-top: 15px;
}

/* Contact Section */
.page-support__contact-section {
  background: linear-gradient(135deg, #26A9E0 0%, #1a8cc7 100%);
  color: #ffffff;
  text-align: center;
}

.page-support__contact-section .page-support__section-title {
  color: #ffffff;
}

.page-support__contact-section .page-support__section-title::after {
  background: #ffffff;
}

.page-support__contact-section .page-support__description {
  color: #e0f2f7;
}

.page-support__light-text {
  color: #e0f2f7;
}

.page-support__contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
  align-items: center;
}

.page-support__contact-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-support__contact-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-support__contact-title {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-support__contact-text {
  font-size: 16px;
  color: #e0f2f7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__contact-info {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-support__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: #ffffff;
  color: #26A9E0;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-secondary:hover {
  background: #e0f2f7;
  color: #1a8cc7;
  transform: translateY(-2px);
}

/* Payment Section */
.page-support__payment-section {
  background-color: #ffffff;
}

.page-support__payment-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.page-support__payment-card {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-support__payment-card p {
  flex-grow: 1;
}

.page-support__card-title {
  font-size: 22px;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-support__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: #26A9E0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  margin-top: 20px;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-primary:hover {
  background: #1a8cc7;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-support__payment-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Responsible Gaming Section */
.page-support__responsible-gaming-section {
  background: #26A9E0;
  color: #ffffff;
}

.page-support__responsible-gaming-section .page-support__section-title {
  color: #ffffff;
}

.page-support__responsible-gaming-section .page-support__section-title::after {
  background: #ffffff;
}

.page-support__responsible-gaming-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  margin-top: 40px;
}

.page-support__responsible-gaming-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-support__responsible-gaming-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-support__responsible-gaming-content ul li {
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 17px;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-support__responsible-gaming-content ul li strong {
  color: #EA7C07;
}

/* Guides Section */
.page-support__guides-section {
  background-color: #f8f8f8;
}

.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: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-support__guide-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #26A9E0;
  flex-grow: 1;
}

.page-support__guide-card h3 a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__guide-card h3 a:hover {
  color: #1a8cc7;
  text-decoration: underline;
}

.page-support__guide-card p {
  font-size: 15px;
  color: #555555;
  margin-bottom: 20px;
}

.page-support__btn-link {
  display: inline-block;
  color: #EA7C07;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  border-bottom: 2px solid #EA7C07;
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.page-support__btn-link:hover {
  color: #d66a00;
  border-color: #d66a00;
  padding-left: 5px;
  padding-right: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support__faq-list,
  .page-support__contact-methods,
  .page-support__payment-details,
  .page-support__responsible-gaming-content {
    grid-template-columns: 1fr;
  }

  .page-support__faq-image, .page-support__contact-image, .page-support__payment-image, .page-support__responsible-gaming-image {
    order: -1; /* Image first on smaller screens */
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-support__hero-image img {
    border-radius: 8px;
  }

  .page-support__main-title {
    font-size: 32px;
  }

  .page-support__description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-support__cta-button {
    padding: 12px 30px;
    font-size: 18px;
    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__section {
    padding: 30px 15px;
  }

  .page-support__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-support__text-block {
    font-size: 15px;
  }

  details.page-support__faq-item summary.page-support__faq-question {
    padding: 15px;
  }

  .page-support__faq-qtext {
    font-size: 16px;
  }

  .page-support__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }

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

  .page-support__faq-answer p {
    font-size: 15px;
  }

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

  .page-support__contact-title {
    font-size: 20px;
  }

  .page-support__contact-text,
  .page-support__contact-info {
    font-size: 15px;
  }

  .page-support__btn-secondary,
  .page-support__btn-primary {
    padding: 10px 20px;
    font-size: 15px;
    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__payment-card,
  .page-support__guide-card {
    padding: 20px;
  }

  .page-support__card-title {
    font-size: 18px;
  }

  .page-support__responsible-gaming-content ul li {
    font-size: 15px;
    padding: 12px 15px;
  }

  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__contact-methods,
  .page-support__payment-details,
  .page-support__responsible-gaming-content,
  .page-support__guide-cards {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-support__overview-section .page-support__container,
  .page-support__faq-section .page-support__container,
  .page-support__contact-section .page-support__container,
  .page-support__payment-section .page-support__container,
  .page-support__responsible-gaming-section .page-support__container,
  .page-support__guides-section .page-support__container {
    padding-left: 0;
    padding-right: 0;
  }
}