/* Section */
.content-cards-section2 {
    width: 100%;
    float: left;
    padding: 24px 0;
}
.content-cards-wrapper h1 {
    margin-top: 45px;
}
.content-cards-wrapper h2 {
    margin-top: 2px;
}
/* Heading */
.section-title {
  text-align: left;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}
/* Layout */
.textBanner_container {
  display: flex;
  align-items: center;
  gap: 20px;
}
/* Left Content */
.content-left {
  width: 60%;
  font-size: 14px;
  line-height: 1.2;
  color: #333;
}
/* Right Image */
.content-right {
  width: 25%;
  text-align: center;
}
.content-right img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
}
/* ✅ Responsive (Mobile) */
@media (max-width: 768px) {
  .textBanner_container {
    flex-direction: column-reverse; /* Image goes on top */
    gap: 0px;
  }
  .section-title
  {
        margin-bottom: 1px;
  }
  .content-left,
  .content-right {
    width: 100%;
  }
  .section-title {
    font-size: 18px;
    text-align: left;
  }
}