/* style/s666-community-forum-feedback.css */
.page-s666-community-forum-feedback {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-s666-community-forum-feedback__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-s666-community-forum-feedback__hero {
  background: linear-gradient(135deg, #0047AB 0%, #003380 100%); /* Darker blue gradient */
  color: #ffffff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.page-s666-community-forum-feedback__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-s666-community-forum-feedback__hero h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  line-height: 1.2;
}

.page-s666-community-forum-feedback__hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-s666-community-forum-feedback__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-size: cover;
  background-position: center;
}

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

.page-s666-community-forum-feedback__section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.page-s666-community-forum-feedback__section:nth-of-type(even) {
  background-color: #f0f5fa; /* Light blue-grey for alternating sections */
}

.page-s666-community-forum-feedback__section h2 {
  font-size: 2.5em;
  color: #0047AB;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-s666-community-forum-feedback__section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-s666-community-forum-feedback__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #444;
  text-align: justify;
}

.page-s666-community-forum-feedback__section ul,
.page-s666-community-forum-feedback__section ol {
  list-style-position: inside;
  padding-left: 20px;
  margin-bottom: 20px;
}

.page-s666-community-forum-feedback__section li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #555;
}

.page-s666-community-forum-feedback__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-s666-community-forum-feedback__btn--primary {
  background-color: #FFD700;
  color: #0047AB;
  margin: 0 10px;
}

.page-s666-community-forum-feedback__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-s666-community-forum-feedback__btn--secondary {
  background-color: #0047AB;
  color: #ffffff;
  border: 2px solid #0047AB;
}

.page-s666-community-forum-feedback__btn--secondary:hover {
  background-color: #003380;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-s666-community-forum-feedback__feedback-form {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-s666-community-forum-feedback__feedback-form h3 {
  font-size: 1.8em;
  color: #0047AB;
  margin-bottom: 25px;
  text-align: center;
}

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

.page-s666-community-forum-feedback__form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

.page-s666-community-forum-feedback__form-group input[type="text"],
.page-s666-community-forum-feedback__form-group input[type="email"],
.page-s666-community-forum-feedback__form-group select,
.page-s666-community-forum-feedback__form-group textarea {
  width: calc(100% - 20px);
  padding: 12px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
}

.page-s666-community-forum-feedback__form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.page-s666-community-forum-feedback__required {
  color: #dc3545;
  margin-left: 5px;
}

.page-s666-community-forum-feedback__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-s666-community-forum-feedback__faq-item h3 {
  color: #0047AB;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-s666-community-forum-feedback__faq-item p {
  color: #555;
  font-size: 1em;
  margin-bottom: 0;
}

.page-s666-community-forum-feedback__section--cta {
  text-align: center;
  background-color: #0047AB;
  color: #ffffff;
  padding: 80px 0;
}

.page-s666-community-forum-feedback__section--cta h2 {
  color: #FFD700;
}

.page-s666-community-forum-feedback__section--cta h2::after {
  background-color: #ffffff;
}

.page-s666-community-forum-feedback__section--cta p {
  color: #f0f0f0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-s666-community-forum-feedback__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-s666-community-forum-feedback__hero h1 {
    font-size: 2.5em;
  }

  .page-s666-community-forum-feedback__hero p {
    font-size: 1em;
  }

  .page-s666-community-forum-feedback__section h2 {
    font-size: 2em;
  }

  .page-s666-community-forum-feedback__section p,
  .page-s666-community-forum-feedback__section li {
    font-size: 0.95em;
  }

  .page-s666-community-forum-feedback__btn {
    padding: 10px 20px;
    font-size: 1em;
    margin: 10px 5px;
  }

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

@media (max-width: 480px) {
  .page-s666-community-forum-feedback__hero h1 {
    font-size: 2em;
  }

  .page-s666-community-forum-feedback__hero p {
    font-size: 0.9em;
  }

  .page-s666-community-forum-feedback__section h2 {
    font-size: 1.8em;
  }

  .page-s666-community-forum-feedback__btn {
    display: block;
    width: 90%;
    margin: 10px auto;
  }
}