.page-user-community-feedback {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Assuming body background is dark */
}

.page-user-community-feedback__hero-section {
  position: relative;
  width: 100%;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 600px;
}

.page-user-community-feedback__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-user-community-feedback__hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-user-community-feedback__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-user-community-feedback__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.page-user-community-feedback__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-user-community-feedback__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-user-community-feedback__section {
  padding: 60px 20px;
  text-align: center;
}

.page-user-community-feedback__dark-bg {
  background-color: #000000;
  color: #ffffff;
}

.page-user-community-feedback__light-bg {
  background-color: #f5f5f5;
  color: #333333;
}

.page-user-community-feedback__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-user-community-feedback__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-user-community-feedback__dark-bg .page-user-community-feedback__section-title {
  color: #ffffff;
}

.page-user-community-feedback__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #666666;
}

.page-user-community-feedback__dark-bg .page-user-community-feedback__section-description {
  color: #cccccc;
}

.page-user-community-feedback__text-block {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: left;
}

.page-user-community-feedback__text-block p {
  margin-bottom: 1em;
}

.page-user-community-feedback__inline-link {
  color: #26A9E0;
  text-decoration: none;
}

.page-user-community-feedback__inline-link:hover {
  text-decoration: underline;
}

.page-user-community-feedback__feedback-form {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 8px;
  text-align: left;
}

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

.page-user-community-feedback__form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #ffffff;
}

.page-user-community-feedback__form-input,
.page-user-community-feedback__form-select,
.page-user-community-feedback__form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #444444;
  border-radius: 4px;
  background-color: #333333;
  color: #ffffff;
  font-size: 1em;
  box-sizing: border-box;
}

.page-user-community-feedback__form-input::placeholder,
.page-user-community-feedback__form-textarea::placeholder {
  color: #aaaaaa;
}

.page-user-community-feedback__form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-6.5%200-12.3%203.2-16.1%208.1-3.9%204.9-4.7%2011.4-2.1%2017.1l132%20132c3.2%203.2%207.6%204.9%2012.1%204.9s8.9-1.7%2012.1-4.9l132-132c4.2-4.2%205.4-10.2%203.6-16.1z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 30px;
}

.page-user-community-feedback__form-submit-btn {
  width: auto;
  padding: 12px 30px;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  background-color: #EA7C07; /* Login color for submit */
  color: #ffffff;
}

.page-user-community-feedback__form-submit-btn:hover {
  background-color: #d46b06;
}

.page-user-community-feedback__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: inline-block;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-user-community-feedback__btn-primary:hover {
  background-color: #1e87bb;
}

.page-user-community-feedback__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  padding: 10px 23px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-user-community-feedback__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-user-community-feedback__process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-user-community-feedback__process-step {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #333333;
}

.page-user-community-feedback__process-step h3 {
  color: #26A9E0;
  margin-bottom: 15px;
  font-size: 1.5em;
}

.page-user-community-feedback__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-user-community-feedback__faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-user-community-feedback__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style: none;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.page-user-community-feedback__faq-item[open] .page-user-community-feedback__faq-question {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-user-community-feedback__faq-item[open] .page-user-community-feedback__faq-toggle {
  transform: rotate(45deg);
}

.page-user-community-feedback__faq-question::-webkit-details-marker {
  display: none;
}

.page-user-community-feedback__faq-qtext {
  flex-grow: 1;
}

.page-user-community-feedback__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-user-community-feedback__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: #cccccc;
  background: rgba(255, 255, 255, 0.02);
}

.page-user-community-feedback__faq-answer p {
  margin-bottom: 0;
}

.page-user-community-feedback__image-container {
  margin-top: 40px;
  text-align: center;
}

.page-user-community-feedback__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-user-community-feedback__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-user-community-feedback__hero-title {
    font-size: 3em;
  }
}

@media (max-width: 768px) {
  .page-user-community-feedback {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-user-community-feedback__hero-section {
    min-height: 400px;
  }

  .page-user-community-feedback__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-user-community-feedback__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-user-community-feedback__section-title {
    font-size: 1.8em;
  }

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

  .page-user-community-feedback__container,
  .page-user-community-feedback__text-block,
  .page-user-community-feedback__feedback-form,
  .page-user-community-feedback__process-grid,
  .page-user-community-feedback__faq-list,
  .page-user-community-feedback__cta-buttons {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-user-community-feedback__hero-video,
  .page-user-community-feedback__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-user-community-feedback__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .page-user-community-feedback__btn-primary,
  .page-user-community-feedback__btn-secondary,
  .page-user-community-feedback__form-submit-btn,
  .page-user-community-feedback a[class*="button"],
  .page-user-community-feedback a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-user-community-feedback__hero-actions,
  .page-user-community-feedback__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-user-community-feedback__process-grid {
    grid-template-columns: 1fr;
  }

  .page-user-community-feedback__faq-question {
    font-size: 1em;
    padding: 15px;
  }

  .page-user-community-feedback__faq-answer {
    padding: 15px;
  }

  .page-user-community-feedback__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}

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

  .page-user-community-feedback__section-title {
    font-size: 1.5em;
  }

  .page-user-community-feedback__feedback-form {
    padding: 20px;
  }
}