.page-support {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  line-height: 1.6;
}

.page-support__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, header offset handled by shared body */
  background-color: #F4F7FB; /* Background */
}

.page-support__hero-container {
  position: relative;
  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 10px 20px rgba(0, 0, 0, 0.1);
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 15px;
}

.page-support__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #2F6BFF;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-support__hero-description {
  font-size: 18px;
  color: #1F2D3D;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-support__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.4);
}

.page-support__section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
}

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

.page-support__section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  color: #2F6BFF;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-support__section-description {
  font-size: 17px;
  color: #1F2D3D;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}

/* FAQ Section */
.page-support__faq-section {
  background-color: #FFFFFF; /* Card BG */
}

details.page-support__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #D6E2FF; /* Border */
  overflow: hidden;
  background: #FFFFFF; /* Card BG */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

details.page-support__faq-item summary.page-support__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #1F2D3D;
}

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

details.page-support__faq-item summary.page-support__faq-question:hover {
  background: #F4F7FB; /* Lighter background on hover */
}

.page-support__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #1F2D3D;
}

.page-support__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #2F6BFF; /* Primary color for toggle */
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

details.page-support__faq-item[open] .page-support__faq-toggle {
  transform: rotate(45deg);
  color: #6FA3FF;
}

details.page-support__faq-item .page-support__faq-answer {
  padding: 0 25px 20px;
  background: #F4F7FB; /* Background */
  border-top: 1px solid #D6E2FF; /* Border */
  color: #1F2D3D;
  font-size: 16px;
  line-height: 1.7;
  border-radius: 0 0 10px 10px;
}

.page-support__faq-answer p {
  margin: 0;
}

/* Guides Section */
.page-support__guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-support__guide-card {
  background: #FFFFFF; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
}

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

.page-support__guide-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-support__guide-title {
  font-size: 22px;
  color: #2F6BFF;
  margin: 20px 15px 10px;
  font-weight: 700;
}

.page-support__guide-title a {
  color: #2F6BFF;
  text-decoration: none;
}

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

.page-support__guide-text {
  font-size: 15px;
  color: #1F2D3D;
  padding: 0 20px 20px;
}

/* Security Section */
.page-support__security-section {
  background-color: #F4F7FB; /* Background */
}

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

.page-support__feature-item {
  background: #FFFFFF; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #D6E2FF; /* Border */
}

.page-support__feature-item img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
}

.page-support__feature-title {
  font-size: 20px;
  color: #2F6BFF;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-support__feature-text {
  font-size: 15px;
  color: #1F2D3D;
}

.page-support__btn-secondary {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 30px;
  background: #FFFFFF; /* Card BG */
  color: #2F6BFF;
  border: 2px solid #2F6BFF; /* Primary color as border */
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-secondary:hover {
  background: #2F6BFF;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

/* Contact Section */
.page-support__contact-section {
  background-color: #FFFFFF; /* Card BG */
}

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

.page-support__method-card {
  background: #F4F7FB; /* Background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF; /* Border */
}

.page-support__method-card img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
}

.page-support__method-title {
  font-size: 20px;
  color: #2F6BFF;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-support__method-text {
  font-size: 15px;
  color: #1F2D3D;
  margin-bottom: 25px;
}

.page-support__btn-primary {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-support__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.3);
}

/* Policies Section */
.page-support__policies-section {
  background-color: #F4F7FB; /* Background */
  padding-bottom: 80px;
}

.page-support__policy-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-support__policy-list li {
  background: #FFFFFF; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF; /* Border */
  font-size: 16px;
  color: #1F2D3D;
}

.page-support__policy-list li a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-support__policy-list li a:hover {
  color: #6FA3FF;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-description {
    font-size: 17px;
  }
  .page-support__section-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-support__hero-image img {
    border-radius: 4px;
  }
  
  .page-support__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-support__section {
    padding: 40px 0;
  }

  .page-support__container {
    padding: 0 15px;
  }

  .page-support__main-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .page-support__hero-description {
    font-size: 16px;
  }

  .page-support__section-title {
    font-size: clamp(22px, 6vw, 32px);
  }

  .page-support__section-description {
    font-size: 15px;
  }

  details.page-support__faq-item summary.page-support__faq-question {
    padding: 15px;
  }

  .page-support__faq-qtext {
    font-size: 15px;
  }

  .page-support__faq-toggle {
    font-size: 24px;
    margin-left: 10px;
    width: 24px;
  }

  details.page-support__faq-item .page-support__faq-answer {
    padding: 0 15px 15px;
    font-size: 14px;
  }

  .page-support__guides-grid, .page-support__security-features, .page-support__contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-support__guide-card img {
    
  }

  .page-support__guide-title {
    font-size: 20px;
  }

  .page-support__feature-item, .page-support__method-card {
    padding: 25px;
  }

  .page-support__feature-title, .page-support__method-title {
    font-size: 18px;
  }

  .page-support__btn-secondary,
  .page-support__btn-primary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-support__policy-list li {
    padding: 15px;
    font-size: 15px;
  }

  .page-support img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-support__section,
  .page-support__card,
  .page-support__container,
  .page-support__cta-buttons,
  .page-support__button-group,
  .page-support__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-support__contact-methods {
    display: flex;
    flex-direction: column;
  }
}