.elementor-194 .elementor-element.elementor-element-91241d2{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-8a09f9c *//* Base Layout & Typography */
.support-page-content {
  font-family: 'Inter', sans-serif;
  background-color: #FAFAFA; /* Very light grey background to make white cards pop */
  padding: 80px 20px 100px;
  color: #0F172A; /* Dark Navy for headings */
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
}

.container-wide {
  max-width: 1000px;
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #0F172A;
}

.section-heading p {
  color: #64748B;
  font-size: 15px;
}

/* Hero Section */
.support-hero {
  text-align: center;
  margin-bottom: 50px;
}

.support-hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.support-hero p {
  font-size: 16px;
  color: #64748B;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Main Card */
.support-contact {
  margin-bottom: 80px;
}

.contact-card-main {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05); /* Soft floating shadow */
}

.contact-card-main h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-card-main p {
  color: #64748B;
  margin-bottom: 25px;
  font-size: 15px;
}

.btn-email-support {
  display: inline-block;
  background-color: #117a65; /* Deep Emerald */
  color: #ffffff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 50px; /* Pill shape */
  font-weight: 600;
  font-size: 15px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-email-support:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Help Categories Grid */
.support-categories {
  margin-bottom: 80px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card h3 {
  color: #117a65; /* Deep Emerald Green */
  font-size: 18px;
  margin-bottom: 12px;
}

.category-card p {
  color: #64748B;
  font-size: 14px;
  line-height: 1.6;
}

/* FAQ Stacked Cards */
.support-faq {
  margin-bottom: 40px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
}

.faq-item h4 {
  color: #117a65; /* Deep Emerald Green */
  font-size: 16px;
  margin-bottom: 8px;
}

.faq-item p {
  color: #64748B;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .support-hero h1 {
    font-size: 32px;
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .contact-card-main {
    padding: 40px 20px;
  }
}/* End custom CSS */