.hero-section {
    position: relative;
    background-image: url('../../images/blog2.png');
    /* Or use your own */
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    padding-left: 3rem;
    color: white;
}

 .hero-section::before {
     content: "";
     position: absolute;
     top: 0;
     right: 0;
     bottom: 0;
     left: 0;
     /* Black overlay with 50% opacity */
     background-color: rgba(0, 0, 0, 0.5);
     z-index: 0;
 }

 .hero-content h1 {
     position: relative;
     z-index: 1;
     font-weight: 600;
     font-size: 2.8rem;
     line-height: 1.2;
     max-width: 900px;
 }

 @media (min-width: 992px) {
     .hero-section {
         height: 340px;
         padding-left: 5rem;
     }

     .hero-content h1 {
         font-size: 4rem;
         max-width: 1200px;
     }
 }

  /* Custom styles for typography & server-box */
    .content h1 {
      font-weight: 600;
      font-size: 26px;
      line-height: 1.2;
      margin-bottom: 25px;
    }
    .content p {
      margin-bottom: 20px;
      font-weight: 300;
      font-size: 15px;
      color: #222222;
    }
    .content h2 {
      font-weight: 600;
      font-size: 22px;
      margin-top: 35px;
      margin-bottom: 20px;
    }
    .content ul {
      margin-bottom: 25px;
      list-style-type: disc;
      padding-left: 20px;
    }
    .content ul li {
      font-weight: 300;
      font-size: 15px;
      margin-bottom: 10px;
    }
 
    .server-box {
      background-color: #f9f9f9;
      border-radius: 15px;
      padding: 20px 25px;
      box-shadow: 0 2px 7px rgb(0 0 0 / 0.025);
    }
    .server-box strong {
      display: block;
      margin-bottom: 15px;
      font-weight: 600;
      font-size: 17px;
      color: #222222;
    }
    .server-box a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 18px;
      margin-bottom: 14px;
      font-weight: 400;
      font-size: 15px;
      color: #47a3ff;
      background-color: #ffffff;
      border: 1.5px solid #b4d1ff;
      border-radius: 16px;
      text-decoration: none;
      transition: background-color 0.28s ease, border-color 0.28s ease;
      cursor: pointer;
    }
    .server-box a:last-child {
      margin-bottom: 0;
    }
    .server-box a:hover {
      background-color: #d9eaff;
      border-color: #47a3ff;
    }
    .server-box a svg {
      width: 12px;
      height: 12px;
      stroke: #47a3ff;
      stroke-width: 2.5;
      fill: none;
    }
 
 .blog-card {
     /* background: #fff; */
     border-radius: 20px;
     /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
     overflow: hidden;
     transition: transform 0.2s ease;
 }

 .blog-card:hover {
     transform: translateY(-5px);
 }

 .blog-card img {
     width: 100%;
     height: 250px;
     object-fit: cover;
     border-radius: 16px;
 }

.blog-card .card-body {
    padding: 20px 0px;
}

 .blog-card h5 {
     font-size: 1.25rem;
     font-weight: 600;
     margin-bottom: 10px;
     color: #121416;
 }
 .blog-card .date {
     font-size: 0.9rem;
     color: #6C757D;
     margin-bottom: 15px;
 }
 .blog-card p {
     font-size: 1rem;
     color: #6C757D;
     line-height: 1.6;
 }
 .blog-card a {
     display: inline-block;
     margin-top: 10px;
     font-size: 1rem;
     font-weight: 500;
     text-decoration: none;
     color: #121416;
     border-bottom: 1px solid #121416;
     padding-bottom: 2px;
 }
  .cart-btn-menu {
    border: 1.5px solid #34A4F5;
    background: #34a4f5;
    color: #fff;
    padding: 6px 9px;
    border-radius: 14px;
    font-size: 16px;
    transition: 0.3s;
}
