.elementor-2616 .elementor-element.elementor-element-be7f908{--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-widget .tippy-tooltip .tippy-content{text-align:center;}/* Start custom CSS for html, class: .elementor-element-f59cc61 *//* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body base styling */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f9fc;
  color: #2b2b2b;
  line-height: 1.7;
  padding: 40px 15px;
}

/* Main article box */
.blog-article {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 40px 40px 70px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  border: 1px solid #d9e8f1;
}

/* Left vertical stripe */
.blog-article::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 20px;
  bottom: 20px;
  width: 8px;
  background-color: #00aaff;
  border-radius: 12px;
}

/* H1 Title */
.blog-article h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #003f66;
  border-bottom: 2px solid #00aaff;
  padding-bottom: 10px;
}

/* H2 Subheadings */
.blog-article h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #0077cc;
  position: relative;
  padding-left: 10px;
}

.blog-article h2::before {
  content: "🔹";
  position: absolute;
  left: -18px;
  top: 0;
  font-size: 18px;
}

/* Paragraph styling */
.blog-article p {
  font-size: 16px;
  margin-bottom: 18px;
  color: #333;
}

/* List styling */
.blog-article ul {
  margin-left: 25px;
  margin-bottom: 20px;
}

.blog-article ul li {
  margin-bottom: 8px;
  font-size: 16px;
}

/* Highlighted box */
.blog-article .highlight {
  background-color: #e8f6ff;
  border-left: 5px solid #00aaff;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 15.5px;
  color: #004a66;
  margin: 30px 0;
}

/* Responsive Mobile Design */
@media (max-width: 768px) {
  .blog-article {
    padding: 30px 20px 30px 30px;
  }

  .blog-article::before {
    left: 10px;
    top: 10px;
    bottom: 10px;
  }

  .blog-article h1 {
    font-size: 26px;
  }

  .blog-article h2 {
    font-size: 20px;
  }

  .blog-article p,
  .blog-article li {
    font-size: 15px;
  }
}/* End custom CSS */