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

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

.page-support__brand-highlight {
  color: #007BFF;
  font-weight: bold;
}

.page-support__hero {
  background: linear-gradient(135deg, #007BFF, #FFD700);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support__hero-title .page-support__brand-highlight {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.page-support__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-support__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
}

.page-support__btn--primary {
  background-color: #FFD700;
  color: #007BFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-support__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-support__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-support__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-support__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: auto;
  opacity: 0.2;
  z-index: 0;
}

.page-support__section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-support__section:nth-of-type(even) {
  background-color: #f9f9f9;
}

.page-support__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-support__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-support__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-support__faq-question {
  width: 100%;
  background-color: #007BFF;
  color: #fff;
  padding: 18px 25px;
  text-align: left;
  font-size: 1.1em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.page-support__faq-question.active {
  background-color: #0056b3;
}

.page-support__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-support__faq-answer {
  padding: 0 25px;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-support__faq-answer p {
  padding: 15px 0;
  margin: 0;
  color: #555;
}

.page-support__faq-answer .page-support__inline-link {
  color: #007BFF;
  text-decoration: underline;
  font-weight: bold;
  display: block;
  padding-bottom: 15px;
}

.page-support__contact-description,
.page-support__resources-description {
  text-align: center;
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555;
}

.page-support__contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.page-support__method-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-support__method-item:hover {
  transform: translateY(-5px);
}

.page-support__method-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-support__method-item h3 {
  color: #007BFF;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-support__method-item p {
  color: #666;
  margin-bottom: 25px;
}

.page-support__resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-support__resource-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #333;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-support__resource-card:hover {
  transform: translateY(-5px);
}

.page-support__resource-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-support__resource-card h3 {
  font-size: 1.4em;
  color: #007BFF;
  padding: 20px 20px 10px;
  margin: 0;
}

.page-support__resource-card p {
  padding: 0 20px 20px;
  margin: 0;
  color: #666;
  flex-grow: 1;
}

.page-support__section-image {
  position: absolute;
  opacity: 0.05;
  z-index: 0;
}

.page-support__faq .page-support__section-image {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 250px;
}

.page-support__contact .page-support__section-image {
  bottom: 0;
  right: 0;
  width: 300px;
}

@media (max-width: 768px) {
  .page-support__hero-title {
    font-size: 2.5em;
  }

  .page-support__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-support__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-support__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-support__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-support__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-support__contact-methods,
  .page-support__resource-grid {
    grid-template-columns: 1fr;
  }

  .page-support__hero-image,
  .page-support__faq .page-support__section-image,
  .page-support__contact .page-support__section-image {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }

  .page-support__hero-description {
    font-size: 0.9em;
  }

  .page-support__btn {
    width: 90%;
  }

  .page-support__faq-question {
    font-size: 0.9em;
    padding: 12px 15px;
  }
}