.page-support {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-support__hero-section {
  background: linear-gradient(135deg, #007BFF, #4da3ff);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_pattern,geometric,blue,gold]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 1;
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

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

.page-support__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFC107;
  border-radius: 2px;
}

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

.page-support__button--primary {
  background-color: #FFC107;
  color: #333;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-support__button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-support__button--secondary {
  background-color: #007BFF;
  color: #fff;
  border: 2px solid #007BFF;
  margin-left: 15px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

.page-support__button--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

/* FAQ Section */
.page-support__faq-section {
  padding: 80px 0;
  background-color: #fff;
}

.page-support__faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.page-support__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  flex: 1 1 calc(50% - 30px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-support__faq-question {
  font-size: 1.4em;
  color: #007BFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__faq-answer {
  font-size: 1em;
  color: #555;
}

.page-support__faq-answer a {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-support__faq-answer a:hover {
  text-decoration: underline;
}

.page-support__call-to-action {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #f0f8ff;
    border-radius: 10px;
    border: 1px dashed #007BFF;
}

.page-support__call-to-action p {
    font-size: 1.3em;
    color: #0056b3;
    margin-bottom: 25px;
}

/* Guides Section */
.page-support__guides-section {
  padding: 80px 0;
  background-color: #f0f8ff;
}

.page-support__guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-support__guide-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-support__guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.page-support__guide-title {
  font-size: 1.3em;
  margin: 20px 15px 10px;
  color: #007BFF;
  font-weight: bold;
}

.page-support__guide-title a {
  color: #007BFF;
  text-decoration: none;
}

.page-support__guide-title a:hover {
  text-decoration: underline;
}

.page-support__guide-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 15px 20px;
}

/* Contact Section */
.page-support__contact-section {
  padding: 80px 0;
  background-color: #fff;
}

.page-support__contact-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.page-support__contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.page-support__contact-method {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  flex: 1 1 calc(33% - 30px);
  max-width: 350px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support__contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-support__icon {
  font-size: 3em;
  color: #FFC107;
  margin-bottom: 20px;
  display: block;
}

.page-support__icon--chat::before { content: '💬'; } /* Placeholder for icon */
.page-support__icon--email::before { content: '📧'; } /* Placeholder for icon */
.page-support__icon--phone::before { content: '📞'; } /* Placeholder for icon */

.page-support__contact-method h3 {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 10px;
}

.page-support__contact-method p {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 25px;
}

.page-support__contact-note {
  font-size: 1em;
  text-align: center;
  margin-top: 50px;
  color: #777;
  font-style: italic;
}

/* CTA Banner */
.page-support__cta-banner {
    background: linear-gradient(90deg, #007BFF, #0056b3);
    padding: 80px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-support__cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_lines,digital,blue]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-support__cta-content {
    position: relative;
    z-index: 1;
}

.page-support__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.page-support__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-support__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support__hero-title {
    font-size: 2.8em;
  }
  .page-support__section-title {
    font-size: 2em;
  }
  .page-support__faq-item, .page-support__contact-method {
    flex: 1 1 calc(100% - 30px);
    max-width: 500px;
  }
  .page-support__cta-title {
      font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 80px 0;
  }
  .page-support__hero-title {
    font-size: 2.2em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__faq-section, .page-support__guides-section, .page-support__contact-section, .page-support__cta-banner {
    padding: 60px 0;
  }
  .page-support__section-title {
    font-size: 1.8em;
    margin-bottom: 40px;
  }
  .page-support__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-support__button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-support__cta-buttons {
      flex-direction: column;
      align-items: center;
  }
  .page-support__button--primary, .page-support__button--secondary {
      width: 80%;
      margin-left: 0;
  }
}

@media (max-width: 576px) {
  .page-support__hero-title {
    font-size: 1.8em;
  }
  .page-support__section-title {
    font-size: 1.5em;
  }
  .page-support__faq-item, .page-support__guide-card, .page-support__contact-method {
    flex: 1 1 100%;
    padding: 20px;
  }
  .page-support__faq-question {
    font-size: 1.2em;
  }
  .page-support__cta-title {
      font-size: 2em;
  }
  .page-support__cta-description {
      font-size: 1em;
  }
}