.elementor-1792 .elementor-element.elementor-element-83271fe{--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;}/* Start custom CSS for html, class: .elementor-element-7965644 *//* === Root Variables & Reset === */
:root {
  --text-color: #2a2a2a;
  --primary: #0073e6;
  --primary-dark: #004a99;
  --bg: #f9f9f9;
  --heading-font: 'Inter', 'Segoe UI', sans-serif;
  --base-font: 'Inter', 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  font-family: var(--base-font);
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-color);
  padding: 40px 16px;
}

/* === Article Container === */
article {
  max-width: 760px;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

/* === Header === */
article header {
  padding: 36px 28px 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
  background: linear-gradient(to right, #f0f8ff, #ffffff);
}

article h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #3b46b8 !important;
  margin-bottom: 10px;
  line-height: 1.4;
}

article em {
  font-size: 0.85rem;
  color: #777;
  display: block;
}

article img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 24px;
  border-radius: 10px;
  object-fit: cover;
}

/* === Main Content === */
article section {
  padding: 28px;
}

article h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 32px 0 16px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
  color: var(--primary-dark);
}

article h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 10px;
  color: #333;
}

article p {
  margin-bottom: 18px;
  text-align: justify;
}

article ul,
article ol {
  padding-left: 20px;
  margin-bottom: 18px;
}

article li {
  margin-bottom: 10px;
}

article strong {
  font-weight: 600;
  color: #000;
}

article a {
  color: var(--primary-dark);
  text-decoration: underline;
  transition: 0.2s ease;
}

article a:hover {
  color: var(--primary);
  text-decoration: underline dashed;
}

/* === Blockquote === */
article blockquote {
  border-left: 4px solid #0077cc;
  background: #f1f9ff;
  padding: 14px 18px;
  margin: 24px 0;
  font-style: italic;
  color: #444;
}

/* === CTA Footer === */
article footer {
  background: #f0f6ff;
  padding: 32px 28px;
  border-top: 1px solid #dde6f2;
  text-align: center;
  border-radius: 0 0 12px 12px;
}

article footer h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

article footer p {
  font-size: 14px;
  margin-bottom: 16px;
  color: #444;
  text-align: center;
}

article footer a {
  display: inline-block;
  background-color: var(--primary);
  color: #ffffff !important;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

article footer a:hover {
  background-color: var(--primary-dark);
}

/* === Responsive Design === */
@media (max-width: 768px) {
  body {
    padding: 24px 12px;
  }

  article {
    box-shadow: none;
    border-radius: 0;
  }

  article header,
  article section,
  article footer {
    padding: 20px;
  }

  article h1 {
    font-size: 1.6rem;
  }

  article h2 {
    font-size: 1.25rem;
  }

  article h3 {
    font-size: 1.05rem;
  }

  article footer h3 {
    font-size: 1.2rem;
  }
}/* End custom CSS */