.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-kadence1:#2B6CB0;--e-global-color-kadence2:#215387;--e-global-color-kadence3:#1A202C;--e-global-color-kadence4:#2D3748;--e-global-color-kadence5:#4A5568;--e-global-color-kadence6:#718096;--e-global-color-kadence7:#EDF2F7;--e-global-color-kadence8:#F7FAFC;--e-global-color-kadence9:#ffffff;--e-global-typography-primary-font-family:"Alatsi";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Alatsi";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Alatsi";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Alatsi";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */<style>
:root {
  --bg: #0b1020;
  --panel: #10162a;
  --panel-2: #0f1a33;
  --card: #121a33;
  --text: #e9eefb;
  --muted: #b9c2dd;
  --brand: #5b9dff;
  --brand-2: #7ce2ff;
  --radius: 12px;
  --gap: 20px;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
header {
  position: sticky;
  top: 0;
  background: var(--panel);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 100;
}
header.scrolled { background: var(--panel-2); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
nav a { color: var(--muted); font-weight: 500; }
nav a:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #08111f;
  font-weight: 600;
}
.btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
}

/* Sections */
.section {
  padding: 40px 0;
}
.section h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.section p.lead {
  color: var(--muted);
}

/* Grid */
.grid {
  display: grid;
  gap: var(--gap);
}
@media (min-width: 720px) {
  .grid.md-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid.lg-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Card */
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
}
.card h3 { margin-top: 0; }
.card p { color: var(--muted); }

/* FAQ */
.faq-item {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  margin-bottom: 10px;
}
.faq-q {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 12px;
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
}
.faq-a {
  display: none;
  padding: 0 12px 12px;
  color: var(--muted);
}
.faq-item[aria-expanded="true"] .faq-a { display: block; }

/* Footer */
footer {
  background: var(--panel-2);
  padding: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Scroll-to-top */
#toTop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--brand);
  color: #08111f;
  padding: 8px 12px;
  border-radius: var(--radius);
  display: none;
}
#toTop.show { display: block; }

</style>/* End custom CSS */