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

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

.page-support h1,
.page-support h2,
.page-support h3 {
  color: #4B0082; /* Deep Purple */
  margin-bottom: 20px;
  text-align: center;
}

.page-support h1 {
  font-size: 2.8em;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support h2 {
  font-size: 2.2em;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
  margin-top: 40px;
}

.page-support h3 {
  font-size: 1.8em;
  color: #4B0082;
}

.page-support p {
  margin-bottom: 15px;
  color: #555;
  text-align: justify;
}

.page-support a {
  color: #4B0082;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support a:hover {
  color: #FFD700;
}

.page-support .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Gold */
  color: #4B0082; /* Deep Purple */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #FFD700;
}

.page-support .cta-button:hover {
  background: #4B0082; /* Deep Purple */
  color: #FFD700; /* Gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border-color: #FFD700;
}

.page-support .btn-small {
  display: inline-block;
  padding: 10px 20px;
  background: #FFD700;
  color: #4B0082;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
  border: 1px solid #FFD700;
}

.page-support .btn-small:hover {
  background: #4B0082;
  color: #FFD700;
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-color: #FFD700;
}

.page-support .btn-link {
  display: inline-block;
  color: #4B0082;
  text-decoration: underline;
  font-weight: bold;
  margin-top: 10px;
}

.page-support .btn-link:hover {
  color: #FFD700;
}

/* Hero Section */
.page-support .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFD700, #4B0082);
}

.page-support .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-support .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-support .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-support .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #f0f0f0;
}

.page-support .hero-content h1 {
  color: #FFF;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.page-support .hero-content p {
  color: #eee;
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 20px;
}

/* Channels Section */
.page-support .channels-section {
  background-color: #f0f0f0;
  padding: 60px 0;
  text-align: center;
}

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

.page-support .channel-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-support .channel-icon {
  width: 120px; /* Min size 200x200px, but visually scaled down here */
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  padding: 10px;
  background-color: #FFD70030;
}

.page-support .channel-card h3 {
  color: #4B0082;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.6em;
}

.page-support .channel-card p {
  color: #666;
  flex-grow: 1;
}

.page-support .email-link,
.page-support .phone-link {
  color: #4B0082;
  font-weight: bold;
}

.page-support .email-link:hover,
.page-support .phone-link:hover {
  color: #FFD700;
}

/* FAQ Section */
.page-support .faq-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-support .faq-list {
  margin-top: 40px;
}

.page-support .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fdfdfd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-support .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-support .faq-question:hover {
  background: #fffbe6; /* Light Gold hover */
}

.page-support .faq-question h3 {
  margin: 0;
  color: #4B0082;
  font-size: 1.4em;
  text-align: left;
  flex-grow: 1;
}

.page-support .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-support .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  color: #666;
  text-align: justify;
}

.page-support .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 15px 25px;
  background: #f9f9f9;
  border-top: 1px dashed #eee;
  border-radius: 0 0 8px 8px;
}

.page-support .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #4B0082;
}

/* Commitment Section */
.page-support .commitment-section {
  background-color: #f0f0f0;
  padding: 60px 0;
  text-align: center;
}

.page-support .commitment-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-support .commitment-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #4B0082;
  max-width: 700px;
  text-align: left;
}

.page-support .commitment-list li strong {
  color: #FFD700;
  margin-right: 8px;
}

.page-support .list-icon {
  width: 60px; /* Min size 200x200px, but visually scaled down here */
  height: 60px;
  object-fit: contain;
  margin-right: 15px;
  background-color: #4B008210;
  border-radius: 50%;
  padding: 5px;
}

/* Feedback Section */
.page-support .feedback-section {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support h1 {
    font-size: 2.4em;
  }
  .page-support h2 {
    font-size: 1.8em;
  }
  .page-support h3 {
    font-size: 1.5em;
  }
  .page-support .channel-card {
    padding: 25px;
  }
  .page-support .channel-icon {
    width: 100px;
    height: 100px;
  }
  .page-support .faq-question h3 {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-support .hero-section {
    padding: 40px 15px;
  }
  .page-support .hero-image {
    margin-bottom: 20px;
  }
  .page-support .hero-image img {
    border-radius: 4px;
  }
  .page-support .hero-content h1 {
    font-size: 2em;
  }
  .page-support .hero-content p {
    font-size: 1em;
  }
  .page-support .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-support .channels-section,
  .page-support .faq-section,
  .page-support .commitment-section,
  .page-support .feedback-section {
    padding: 40px 0;
  }
  .page-support .channels-grid {
    grid-template-columns: 1fr;
  }
  .page-support .channel-card {
    padding: 20px;
  }
  .page-support .channel-icon {
    width: 80px;
    height: 80px;
  }
  .page-support .faq-question {
    padding: 15px 20px;
  }
  .page-support .faq-question h3 {
    font-size: 1.1em;
  }
  .page-support .faq-toggle {
    font-size: 20px;
  }
  .page-support .faq-answer {
    padding: 0 20px;
  }
  .page-support .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-support .commitment-list li {
    font-size: 1em;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-support .list-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .page-support h1 {
    font-size: 1.8em;
  }
  .page-support h2 {
    font-size: 1.6em;
  }
  .page-support h3 {
    font-size: 1.3em;
  }
  .page-support .cta-button {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 20px;
  }
  .page-support .btn-small {
    width: 100%;
    box-sizing: border-box;
  }
  .page-support .faq-question h3 {
    font-size: 1em;
  }
  .page-support .faq-toggle {
    font-size: 18px;
  }
  .page-support .commitment-list li {
    font-size: 0.95em;
  }
}