/* style/support.css */

/* Base styles for the support page */
.page-support {
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Main text color for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-support__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #F2C14E; /* Gold color for titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  text-align: center;
  overflow: hidden;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-support__hero-content {
  max-width: 800px;
  margin: 0 auto;
  z-index: 1; /* Ensure content is above any potential background elements */
}

.page-support__hero-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6; /* Main text color */
  margin-bottom: 20px;
}

.page-support__hero-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 30px;
}

.page-support__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Button text color */
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-support__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-support__cta-button--secondary {
  background: none;
  border: 2px solid #2AD16F;
  color: #2AD16F;
  box-shadow: none;
}

.page-support__cta-button--secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-support__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-support__quick-links-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG color */
  border-bottom: 1px solid #1E3A2A; /* Divider color */
}

.page-support__quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.page-support__quick-link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background-color: rgba(46, 122, 78, 0.2); /* Semi-transparent border color */
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  text-decoration: none;
  color: #F2FFF6;
  font-weight: 600;
  font-size: 1.1em;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-support__quick-link-card:hover {
  background-color: #0A4B2C; /* Deep Green */
  transform: translateY(-5px);
}

.page-support__faq-section {
  padding: 60px 0;
}

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

.page-support__faq-item {
  background-color: #11271B; /* Card BG color */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: #F2FFF6;
  background-color: #0A4B2C; /* Deep Green for summary */
  border-bottom: 1px solid transparent; /* default */
  transition: background-color 0.3s ease;
}

.page-support__faq-item[open] .page-support__faq-question {
  border-bottom-color: #2E7A4E;
}

.page-support__faq-question:hover {
  background-color: #13994A; /* Slightly lighter green on hover */
}

.page-support__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.2s ease;
}

.page-support__faq-item[open] .page-support__faq-toggle {
  transform: rotate(45deg); /* Plus sign rotates to X or dash */
}

.page-support__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #A7D9B8; /* Secondary text color */
}

/* Details element specific styling to remove default marker */
.page-support__faq-item summary {
  list-style: none;
}

.page-support__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-support__detailed-guides-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
  border-top: 1px solid #1E3A2A;
}

.page-support__guide-block {
  background-color: #11271B; /* Card BG color */
  border: 1px solid #2E7A4E; /* Border color */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-support__guide-title {
  font-size: 1.8em;
  color: #F2C14E; /* Gold color */
  margin-bottom: 20px;
  text-align: center;
}

.page-support__guide-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-support__guide-block p {
  color: #A7D9B8;
  margin-bottom: 15px;
}

.page-support__guide-steps,
.page-support__guide-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-support__guide-steps li,
.page-support__guide-list li {
  margin-bottom: 10px;
  color: #A7D9B8;
}

.page-support__guide-steps li strong {
  color: #F2FFF6;
}

.page-support__contact-section {
  padding: 60px 0;
  text-align: center;
}

.page-support__contact-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-support__contact-description {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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