.elementor-6358 .elementor-element.elementor-element-35e1449{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-6358 .elementor-element.elementor-element-056d00e.xpro-widget-bg-overlay:before{transition:background 0.3s;}/* Start custom CSS */@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #01343F;
  --teal: #0A7877;
  --active: #94A53A;
  --bg: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --text: #1a2e35;
  --muted: #64748b;
  --radius: 10px;
}

.sve-help * {
  box-sizing: border-box;
  font-family: 'Manrope', sans-serif;
}

.sve-help {
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.sve-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 32px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal);
}

/* Vertical steps */
.sve-steps {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  position: relative;
}

.sve-steps::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 36px;
  bottom: 36px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), rgba(10,120,119,0.1));
  z-index: 0;
}

.sve-step {
  display: grid;
  grid-template-columns: 36px 1fr 1fr;
  gap: 0 32px;
  align-items: start;
  padding: 0 0 48px 0;
  position: relative;
}

.sve-step:last-child { padding-bottom: 0; }

.sve-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: 2px;
  box-shadow: 0 0 0 4px #fff;
  font-family: 'Manrope', sans-serif;
}

.sve-step-content {
  padding-top: 4px;
}

.sve-step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  font-family: 'Manrope', sans-serif;
}

.sve-step-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  font-family: 'Manrope', sans-serif;
}

.sve-step-content a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}
.sve-step-content a:hover { text-decoration: underline; }

.sve-step-screenshots {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sve-step-screenshots img {
  width: 100%;
  max-width: 340px;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(1,52,63,0.1);
  display: block;
}

/* Info box */
.sve-info-box {
  background: #f0faf9;
  border-left: 3px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 0.875rem;
  color: var(--primary);
  margin-bottom: 48px;
  font-family: 'Manrope', sans-serif;
}

/* FAQ */
.sve-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 56px;
}

.sve-faq-list details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.sve-faq-list details[open] {
  box-shadow: 0 4px 16px rgba(1,52,63,0.08);
  border-color: var(--teal);
}

.sve-faq-list summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-family: 'Manrope', sans-serif;
}
.sve-faq-list summary::-webkit-details-marker { display: none; }
.sve-faq-list summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--teal);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.sve-faq-list details[open] summary::after { transform: rotate(45deg); }

.sve-faq-body {
  padding: 16px 22px 20px;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.75;
  border-top: 1px solid var(--border);
  font-family: 'Manrope', sans-serif;
}
.sve-faq-body p + p { margin-top: 10px; }
.sve-faq-body a { color: var(--teal); font-weight: 600; }

/* CTA */
.sve-contact-cta {
  background: var(--primary);
  border-radius: 14px;
  padding: 40px 36px;
  text-align: center;
  color: white;
}
.sve-contact-cta h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Manrope', sans-serif;
  color: white;
}
.sve-contact-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 24px;
  font-family: 'Manrope', sans-serif;
}
.sve-btn {
  display: inline-block;
  background: var(--teal);
  color: white !important;
  text-decoration: none !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.2s;
  font-family: 'Manrope', sans-serif;
}
.sve-btn:hover { background: #0c8e8d; transform: translateY(-1px); }

@media (max-width: 700px) {
  .sve-step {
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
  }
  .sve-step-screenshots {
    grid-column: 2;
    margin-top: 16px;
  }
  .sve-step-screenshots img { max-width: 100%; }
}/* End custom CSS */