body {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

.blog-article {
  max-width: 900px;
  margin: 150px auto;
  margin-bottom: 0px;
  padding: 50px 30px;
  border-radius: 18px;
  background-color: #fff;
  box-shadow: 0 8px 30px rgba(8, 38, 74, 0.08);
}

.blog-header {
  text-align: center;
  margin-bottom: 50px;
}

.blog-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #08264a;
  margin-bottom: 0px;
}

.blog-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #4a4a4a;
  margin: 10px auto;
  max-width: 700px;
}

.blog-header p {
  font-size: 20px;
  font-weight: 700;
  color: #08264a;
  margin-bottom: 15px;
}

.blog-section {
  margin-bottom: 60px;
}

.blog-section h2 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #3c9af2;
  font-weight: 700;
}

.blog-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1c3e6e;
}

.blog-section p {
  font-size: 17px;
  margin-bottom: 18px;
  color: #2e2e2e;
}

.blog-section em {
  color: #444;
  font-style: italic;
}

.blog-section strong {
  font-weight: 700;
  color: #000;
}

.blog-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.blog-section ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}

.without-dots {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}

.cta-button {
  margin-top: 40px;
  text-align: center;
}

.cta-button a {
  display: inline-block;
  background: linear-gradient(135deg, #236cb0, #4facfe);
  background-size: 200% 200%;
  background-position: 0 0;
  color: white !important;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(13, 110, 253, 0.3);
  transition: background-position 0.3s ease;
}

.cta-button a:hover {
  background-position: 100% 0;
}

.closing {
  margin-top: 50px;
  padding-top: 10px;
}

.blog-section li {
  margin-bottom: 10px;
}

.blog-section ol li h3 {
  margin-bottom: 0px !important;
}

.blog-section a {
  color: #2e718b;
  transition: color 0.2s ease;
}

.blog-section a:hover {
  color: #1c3e6e;
}

.tableBorder {
  padding: 20px;
  border: 1px solid black;
  overflow: hidden;
}

@media (max-width: 768px) {
  .blog-article {
    padding: 30px 20px;
    background-color: transparent;
    box-shadow: none;
  }

  .blog-header h1 {
    font-size: 26px;
  }

  .blog-header h2 {
    font-size: 17px;
  }

  .blog-section h2 {
    font-size: 22px;
  }

  .blog-section h3 {
    font-size: 17px;
  }

  .blog-section p,
  .blog-section ul li {
    font-size: 15.5px;
  }

  .cta-button a {
    padding: 12px 26px;
    font-size: 15px;
  }
}