/* style/gambling-community-help-feedback.css */
.page-gambling-community-help-feedback {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-gambling-community-help-feedback__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-gambling-community-help-feedback__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

.page-gambling-community-help-feedback__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-gambling-community-help-feedback__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-gambling-community-help-feedback__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}

.page-gambling-community-help-feedback__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-gambling-community-help-feedback__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-gambling-community-help-feedback__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 1.05em;
}

.page-gambling-community-help-feedback__btn--primary {
  background-color: #ffc107;
  color: #0056b3; /* Darker blue for contrast */
  border-color: #ffc107;
}

.page-gambling-community-help-feedback__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #003f8f;
}

.page-gambling-community-help-feedback__btn--secondary {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.page-gambling-community-help-feedback__btn--secondary:hover {
  background-color: #fff;
  color: #007bff;
  border-color: #fff;
}

.page-gambling-community-help-feedback__btn--small {
  padding: 8px 18px;
  font-size: 0.95em;
  border-radius: 5px;
}

.page-gambling-community-help-feedback__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-gambling-community-help-feedback__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-gambling-community-help-feedback__section-title {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-gambling-community-help-feedback__section-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-gambling-community-help-feedback__faq-section {
  background-color: #fff;
}

.page-gambling-community-help-feedback__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-gambling-community-help-feedback__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-gambling-community-help-feedback__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-gambling-community-help-feedback__faq-question {
  font-size: 1.4em;
  color: #0056b3;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-gambling-community-help-feedback__faq-answer {
  color: #444;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-gambling-community-help-feedback__faq-illustration {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: 20px auto;
  display: block;
}

.page-gambling-community-help-feedback__report-section,
.page-gambling-community-help-feedback__suggestion-section {
  background-color: #f0f7ff;
  border-top: 5px solid #007bff;
}

.page-gambling-community-help-feedback__form-container {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.page-gambling-community-help-feedback__form {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  flex: 1 1 500px;
  text-align: left;
}

.page-gambling-community-help-feedback__form-group {
  margin-bottom: 20px;
}

.page-gambling-community-help-feedback__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #0056b3;
  font-size: 1.05em;
}

.page-gambling-community-help-feedback__form-input,
.page-gambling-community-help-feedback__form-textarea,
.page-gambling-community-help-feedback__form-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-gambling-community-help-feedback__form-input:focus,
.page-gambling-community-help-feedback__form-textarea:focus,
.page-gambling-community-help-feedback__form-select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
  outline: none;
}

.page-gambling-community-help-feedback__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.page-gambling-community-help-feedback__form-image {
  flex: 1 1 300px;
  max-width: 400px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gambling-community-help-feedback__contact-section {
  background-color: #fff;
}

.page-gambling-community-help-feedback__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-gambling-community-help-feedback__contact-method {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gambling-community-help-feedback__contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-gambling-community-help-feedback__contact-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-gambling-community-help-feedback__contact-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-gambling-community-help-feedback__contact-detail a {
  color: #ffc107;
  text-decoration: none;
  font-weight: 600;
}

.page-gambling-community-help-feedback__contact-detail a:hover {
  text-decoration: underline;
}

.page-gambling-community-help-feedback__community-section {
  background-color: #f0f7ff;
  border-top: 5px solid #ffc107;
}

.page-gambling-community-help-feedback__community-content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: left;
}

.page-gambling-community-help-feedback__community-image {
  flex: 1 1 400px;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-gambling-community-help-feedback__community-actions {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-gambling-community-help-feedback__community-text {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 10px;
}

.page-gambling-community-help-feedback__cta-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.page-gambling-community-help-feedback__cta-section .page-gambling-community-help-feedback__section-title {
  color: #ffc107;
}

.page-gambling-community-help-feedback__cta-section .page-gambling-community-help-feedback__section-description {
  color: #e0f2ff;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-gambling-community-help-feedback__hero-title {
    font-size: 2.8em;
  }

  .page-gambling-community-help-feedback__hero-subtitle {
    font-size: 1.1em;
  }

  .page-gambling-community-help-feedback__section-title {
    font-size: 2em;
  }

  .page-gambling-community-help-feedback__form-container,
  .page-gambling-community-help-feedback__community-content {
    flex-direction: column;
    text-align: center;
  }

  .page-gambling-community-help-feedback__form-image,
  .page-gambling-community-help-feedback__community-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-gambling-community-help-feedback__hero-title {
    font-size: 2.2em;
  }

  .page-gambling-community-help-feedback__hero-subtitle {
    font-size: 1em;
  }

  .page-gambling-community-help-feedback__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-gambling-community-help-feedback__btn {
    width: 100%;
    max-width: 300px;
  }

  .page-gambling-community-help-feedback__faq-grid {
    grid-template-columns: 1fr;
  }

  .page-gambling-community-help-feedback__section {
    padding: 40px 15px;
  }

  .page-gambling-community-help-feedback__form,
  .page-gambling-community-help-feedback__form-image {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .page-gambling-community-help-feedback__hero-title {
    font-size: 1.8em;
  }

  .page-gambling-community-help-feedback__section-title {
    font-size: 1.6em;
  }

  .page-gambling-community-help-feedback__faq-item,
  .page-gambling-community-help-feedback__contact-method {
    padding: 20px;
  }

  .page-gambling-community-help-feedback__faq-question {
    font-size: 1.2em;
  }
}