.page-support {
  background-color: var(--secondary-color);
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-support__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

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

.page-support h1,
.page-support h2,
.page-support h3 {
  color: #26A9E0;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
}

.page-support h1 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
}

.page-support h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.3;
}

.page-support h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.4;
  color: #333333;
}

.page-support p {
  margin-bottom: 15px;
  text-align: center;
  font-size: 17px;
}

.page-support ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  text-align: left;
  font-size: 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support li {
  margin-bottom: 8px;
  color: #333333;
}

.page-support__cta-button,
.page-support__btn-primary,
.page-support__btn-secondary {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__cta-button,
.page-support__btn-primary {
  background: #26A9E0;
  color: #ffffff;
}

.page-support__cta-button:hover,
.page-support__btn-primary:hover {
  background: #1e87c2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-support__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-support__btn-secondary:hover {
  background: #f0f8ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* HERO Section */
.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, main offset from body */
  background-color: #f0f8ff; /* Light background for the hero section */
}

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

.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: 8px;
  object-fit: cover;
}

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

.page-support__hero-content p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Channels Section */
.page-support__contact-channels {
  background-color: #ffffff;
}

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

.page-support__channel-item {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

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

.page-support__channel-item h3 {
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-support__channel-item p {
  text-align: center;
  font-size: 16px;
}

.page-support__channel-info {
  margin-top: 40px;
  font-style: italic;
  color: #555555;
  font-size: 15px;
}

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

.page-support__faq-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto 40px auto;
  border-radius: 8px;
  object-fit: cover;
}

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

details.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}

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;
}

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;
}

.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: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-support__faq-item .page-support__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  text-align: left;
  font-size: 16px;
}

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

.page-support__responsible-gaming h2 {
  color: #ffffff;
}

.page-support__responsible-gaming p {
  color: #ffffff;
}

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

.page-support__feature-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-support__feature-item h3 {
  color: #ffffff;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-support__feature-item p {
  color: #ffffff;
  font-size: 15px;
}

.page-support__feature-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: cover;
}

.page-support__responsible-text {
  margin-top: 30px;
  font-size: 16px;
}

/* Technical Support Section */
.page-support__technical-support {
  background-color: #ffffff;
}

.page-support__tech-issues {
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: left;
}

.page-support__tech-issues h3 {
  text-align: left;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-support__technical-support ul {
  list-style: disc;
  margin-left: 20px;
  text-align: left;
}

.page-support__technical-support li {
  margin-bottom: 5px;
}

/* Feedback & Suggestions Section */
.page-support__feedback-suggestions {
  background-color: #f0f8ff;
}

.page-support__feedback-suggestions ul {
  list-style: disc;
  margin-left: 20px;
  text-align: left;
}

/* Operating Hours Section */
.page-support__operating-hours {
  background-color: #ffffff;
}

.page-support__hours-note {
  font-style: italic;
  color: #555555;
  font-size: 15px;
  margin-top: 20px;
}

/* General Image Styling */
.page-support img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .page-support__section {
    padding: 40px 0;
  }

  .page-support__container {
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-support h1 {
    font-size: 28px;
  }

  .page-support h2 {
    font-size: 24px;
  }

  .page-support h3 {
    font-size: 20px;
  }

  .page-support p {
    font-size: 16px;
  }

  .page-support ul {
    font-size: 15px;
    margin-left: 15px;
  }

  .page-support__cta-button,
  .page-support__btn-primary,
  .page-support__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-top: 15px;
  }

  .page-support__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-support__hero-image {
    margin-bottom: 20px;
  }

  .page-support__channels-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-support__channel-icon {
    max-width: 200px;
  }

  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-image {
    margin-bottom: 30px;
  }

  .page-support__responsible-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__channels-grid,
  .page-support__responsible-features {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}