/* style/support.css */

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

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

.page-support__section-title {
  font-size: 2.5em;
  color: #0A2E36;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
  font-weight: bold;
}

.page-support__keyword {
  color: #E74C3C;
}

.page-support__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
}

.page-support__btn--primary {
  background-color: #E74C3C;
  color: #FFFFFF;
  border: 1px solid #E74C3C;
}

.page-support__btn--primary:hover {
  background-color: #c0392b;
  border-color: #c0392b;
}

.page-support__btn--secondary {
  background-color: #0A2E36;
  color: #FFFFFF;
  border: 1px solid #0A2E36;
}

.page-support__btn--secondary:hover {
  background-color: #1a4d5a;
  border-color: #1a4d5a;
}

/* Hero Section */
.page-support__hero {
  background: linear-gradient(135deg, #0A2E36 0%, #1a4d5a 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-support__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__search-box {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.page-support__search-input {
  width: 100%;
  max-width: 500px;
  padding: 15px 20px;
  border: none;
  border-radius: 5px 0 0 5px;
  font-size: 1em;
  outline: none;
  color: #0A2E36;
}

.page-support__search-button {
  background-color: #E74C3C;
  color: #FFFFFF;
  border: none;
  padding: 15px 25px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-support__search-button:hover {
  background-color: #c0392b;
}

/* FAQ Section */
.page-support__faq {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-support__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-support__faq-question {
  padding: 20px 25px;
  font-size: 1.2em;
  color: #0A2E36;
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
}

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

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

.page-support__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #555;
  display: none;
  border-top: 1px solid #eee;
}

.page-support__faq-answer p {
  margin-bottom: 15px;
}

.page-support__faq-answer .page-support__btn {
  margin-top: 10px;
}

/* Resources Section */
.page-support__resources {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-support__resource-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-support__resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.page-support__card-title {
  font-size: 1.3em;
  margin: 15px 20px 10px;
  color: #0A2E36;
  min-height: 60px;
}

.page-support__card-title a {
  color: #0A2E36;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-support__card-title a:hover {
  color: #E74C3C;
}

.page-support__card-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px 20px;
  flex-grow: 1;
}

/* Contact Section */
.page-support__contact {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

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

.page-support__contact-card {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-support__contact-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-support__contact-method-title {
  font-size: 1.5em;
  color: #0A2E36;
  margin-bottom: 15px;
}

.page-support__contact-card p {
  color: #666;
  margin-bottom: 25px;
}

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

  .page-support__section-title {
    font-size: 2em;
  }

  .page-support__search-box {
    flex-direction: column;
    align-items: center;
  }

  .page-support__search-input {
    border-radius: 5px;
    margin-bottom: 10px;
    max-width: 90%;
  }

  .page-support__search-button {
    border-radius: 5px;
    width: 90%;
  }

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

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

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

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

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

  .page-support__section-title {
    font-size: 1.8em;
  }

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

  .page-support__faq-question {
    font-size: 1em;
  }
}