@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100;200;300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Outfit:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #fff;
  color: #1d1d1f;
}

/* Header */
.support-header {
  text-align: center;
  padding: 60px 20px 40px;
  background: #f5f5f7;
}

.support-header h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.support-header p {
  color: #6e6e73;
  margin-bottom: 25px;
}

.search-box input {
  width: 100%;
  max-width: 500px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #d2d2d7;
  font-size: 16px;
}

/* Categories */
.support-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

.category-card {
  padding: 30px;
  background: #f5f5f7;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.2s ease;
  text-decoration: none;

}

.category-card:hover {
  transform: translateY(-4px);
}

.category-card h3 {
  margin-bottom: 8px;
  color: #1d1d1f;
}

.category-card p {
  color: #6e6e73;
  font-size: 14px;
}

/* Help Topics */
.help-topics {
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
}

.help-topics h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.topic-list a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid #e5e5e5;
  color: #0071e3;
  text-decoration: none;
}

.topic-list a:hover {
  text-decoration: underline;
}

/* CTA */
.support-cta {
  text-align: center;
  padding: 60px 20px;
  background: #f5f5f7;
}

.support-cta h2 {
  margin-bottom: 10px;
}

.support-cta p {
  color: #6e6e73;
  margin-bottom: 20px;
}

.support-cta button {
  padding: 12px 26px;
  border-radius: 20px;
  border: none;
  background: #8b700f;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

/* Footer */
.support-footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: #6e6e73;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #fff;
  color: #1d1d1f;
}

/* Header */
.support-header {
  text-align: center;
  padding: 60px 20px 40px;
  background: #f5f5f7;
}

.support-header h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.support-header p {
  color: #6e6e73;
  margin-bottom: 25px;
}

.search-box input {
  width: 100%;
  max-width: 500px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #d2d2d7;
  font-size: 16px;
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

#faq_detail {
  border-bottom: 1px solid #e5e5e5;
  padding: 18px 0;
}

summary {
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 20px;
  padding-bottom: 10px;
  color: rgb(0, 0, 0);
}

 #faq_title::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 20px;
  color: #6e6e73;
}

details[open] #faq_title::after {
  content: "–";
}

details p {
  margin-top: 12px;
  color: #6e6e73;
  line-height: 1.6;
  font-size: 14px;
}

/* Footer */
.navbar {
  height: 45px;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  padding: 0 20px;
  backdrop-filter: saturate(180%) blur(20px);
  background: rgba(251, 251, 253, 0.8);
  position: fixed;
  /* padding-top: 14px; */
}
.nav_items {
  display: flex;
  gap: 30px;
}
.logo {
  font-size: 20px;
}

.navbar nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.brand_name {
  text-decoration: none;
  color: #333;
  font-family: Comfortaa, sans-serif;
  font-weight: 600;
}

/* Footer */
.jashews-footer {
  background: #f5f5f7;
  color: #6e6e73;
  font-size: 12px;
}

.footer-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.footer-note {
  border-bottom: 1px solid #f5f5f7;
  padding-bottom: 15px;
  margin-bottom: 30px;
  line-height: 1.5;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.footer-columns summary {
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 10px;
  cursor: pointer;
}

.footer-columns a {
  display: block;
  text-decoration: none;
  color: #6e6e73;
  margin: 6px 0;
}

.footer-columns a:hover {
  text-decoration: underline;
}

details summary {
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #d2d2d7;
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.footer-links a {
  color: #6e6e73;
  text-decoration: none;
  margin-right: 10px;
}

.footer-links a:hover {
  text-decoration: underline;
}
  #Why_section h2{
    font-size: 1.2rem;
    color: #555;
  }
  #ratesTable th{
    font-size: 0.9rem;
    color: #363636;
  }
/* Mobile View */
@media (max-width: 768px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }

  details {
    border-bottom: 1px solid #d2d2d7;
    padding: 10px 0;
  }

  details[open] summary {
    margin-bottom: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
}
