/* style/support-email-ticket-system.css */
.page-support-email-ticket-system {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-support-email-ticket-system__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-support-email-ticket-system__hero {
  background: linear-gradient(135deg, #003366 0%, #0a4d8c 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support-email-ticket-system__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Auxiliary color for emphasis */
}

.page-support-email-ticket-system__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support-email-ticket-system__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-support-email-ticket-system__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-support-email-ticket-system__btn--primary:hover {
  background-color: #e6b800;
  color: #002244;
}

.page-support-email-ticket-system__btn--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-support-email-ticket-system__btn--secondary:hover {
  background-color: #0a4d8c;
  color: #ffe066;
}

.page-support-email-ticket-system__section {
  padding: 60px 0;
}

.page-support-email-ticket-system__section--how-it-works {
  background-color: #ffffff;
}

.page-support-email-ticket-system__section--benefits {
  background-color: #f0f5fa;
}

.page-support-email-ticket-system__section--faq {
  background-color: #ffffff;
}

.page-support-email-ticket-system__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-support-email-ticket-system__steps {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}

.page-support-email-ticket-system__step {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  padding: 30px;
  border-radius: 8px;
  background-color: #fcfcfc;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-support-email-ticket-system__step:hover {
  transform: translateY(-5px);
}

.page-support-email-ticket-system__step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 51, 102, 0.3));
}

.page-support-email-ticket-system__step-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support-email-ticket-system__step-description {
  font-size: 1em;
  color: #555;
}

.page-support-email-ticket-system__link {
  color: #003366;
  text-decoration: underline;
}

.page-support-email-ticket-system__link:hover {
  color: #FFCC00;
}

.page-support-email-ticket-system__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-support-email-ticket-system__benefit-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-support-email-ticket-system__benefit-card:hover {
  transform: translateY(-5px);
}

.page-support-email-ticket-system__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(255, 204, 0, 0.3));
}

.page-support-email-ticket-system__benefit-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-support-email-ticket-system__benefit-description {
  font-size: 0.95em;
  color: #555;
}

.page-support-email-ticket-system__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-support-email-ticket-system__faq-item {
  background-color: #fcfcfc;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.page-support-email-ticket-system__faq-question {
  font-size: 1.2em;
  color: #003366;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e6eef7; /* Lighter shade of main color */
  border-bottom: 1px solid #d0dbe7;
  font-weight: bold;
}

.page-support-email-ticket-system__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-support-email-ticket-system__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support-email-ticket-system__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #ffffff;
  color: #444;
}

.page-support-email-ticket-system__faq-answer p {
  padding: 15px 0;
  margin: 0;
}

.page-support-email-ticket-system__faq-answer.active {
  max-height: 200px; /* Adjust as needed based on content */
  padding: 15px 25px;
}

.page-support-email-ticket-system__cta-section {
  background-color: #003366;
  padding: 80px 0;
  color: #ffffff;
  text-align: center;
}

.page-support-email-ticket-system__cta-content {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-support-email-ticket-system__cta-title {
  font-size: 2.8em;
  color: #FFCC00;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support-email-ticket-system__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-support-email-ticket-system__cta-image-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.page-support-email-ticket-system__cta-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-support-email-ticket-system__hero-title {
    font-size: 2.5em;
  }

  .page-support-email-ticket-system__hero-subtitle {
    font-size: 1.1em;
  }

  .page-support-email-ticket-system__section-title {
    font-size: 2em;
  }

  .page-support-email-ticket-system__steps {
    flex-direction: column;
    align-items: center;
  }

  .page-support-email-ticket-system__step {
    max-width: 100%;
  }

  .page-support-email-ticket-system__cta-title {
    font-size: 2.2em;
  }

  .page-support-email-ticket-system__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-support-email-ticket-system__hero {
    padding: 60px 0;
  }

  .page-support-email-ticket-system__hero-title {
    font-size: 2em;
  }

  .page-support-email-ticket-system__hero-subtitle {
    font-size: 1em;
  }

  .page-support-email-ticket-system__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-support-email-ticket-system__section {
    padding: 40px 0;
  }

  .page-support-email-ticket-system__section-title {
    font-size: 1.8em;
  }

  .page-support-email-ticket-system__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-support-email-ticket-system__faq-answer p {
    padding: 10px 0;
  }

  .page-support-email-ticket-system__cta-section {
    padding: 50px 0;
  }

  .page-support-email-ticket-system__cta-title {
    font-size: 1.8em;
  }
}