
    :root {
      --primary-blue: #29166f;
      --primary-green: #019340;
    }

    /* Hero Section */
    .hero-banner {
      background-image: linear-gradient(to right, var(--primary-blue), var(--primary-green));
      color: #fff;
      text-align: center;
      padding: 3rem 1rem;
    }

    /* Section Headings */
    .section-title {
      color: var(--primary-blue);
      font-size: 1.75rem;
      font-weight: 600;
      margin-bottom: 2.5rem !important;
      background-image: linear-gradient(to right, rgba(187,198,255,0.2),  rgba(194, 255, 219, 0.9));

    }

    /* Overview Content */
    .overview-section p {
      line-height: 1.6;
      margin-bottom: 1rem;
    }

    .overview-section ul {
      padding-left: 1.2rem;
      list-style: disc;
    }

    /* Benefits Grid */
    .benefits-card {
      background: #fff;
      padding: 1rem;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      height: 100%;
    }

    .benefits-card img {
      max-height: 100px;
      object-fit: contain;
      margin-bottom: 0.5rem;
    }

    /* Before & After Images */
    .before-after img {
      border-radius: 8px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    }

    /* FAQ Accordion */
    .accordion-button {
      font-weight: 500;
      background-color: #f8f9fa;
    }

    .accordion-button:not(.collapsed) {
      color: var(--primary-blue);
      background-color: #e9ecef;
    }

    /* Call to Action Section */
    .cta-section {
      background-image: linear-gradient(to right, rgba(1, 147, 64, 0.8), rgba(41, 22, 111, 0.9)), url(images1/Banners/ci3.jpeg);
      background-size: cover;
      background-position: center;
      color: white;
      text-align: center;
      padding: 3rem 1rem;
    }

    .cta-section .btn {
      background-color: var(--primary-green);
      padding: 0.6rem 1rem !important;
      font-weight: bold;
      border: none;
      border-radius: 4px;
      margin-left: -1rem;
    }

    /* Responsive Fixes */
    @media (max-width: 576px) {
      .cta-section .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.95rem;
      }
      .t-info p{
        font-size: 12px;
      }
    }

    p,
    li {
      line-height: 1.3;
    }

    ul {
  padding-left: 1.2rem;
  list-style-type: disc;
}

h5 {
  font-weight: 600;
  color: #29166f;
}

.section-title + ul {
  max-width: 800px;
  margin: 0 auto;
}

/* styling of new sections */
/* General Reset & Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
}

h3.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #222;
}

h5 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #444;
}

p {
  margin-bottom: 1rem;
  color: #555;
}

ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin: 0;
}

li {
  margin-bottom: 0.5rem;
}

/* Layout & Utilities */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.bg-light {
  background-color: #f8f9fa;
}

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-success {
  color: #28a745;
}

.text-dis {
  color: #dc3545 !important;
}

/* Grid System (Simplified Bootstrap-Like) */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}

.col-md-6 {
  width: 100%;
  padding: 0 0.75rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .col-md-6 {
    width: 50%;
  }
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.ps-3 {
  padding-left: 1rem;
}
.t-info{
  color: white;
}

.uses-image-wrapper{
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}
.uses-image{
  width: 250px;
  object-fit: cover;
}
.uses-image h4{
  text-align: center;
  font-size: 20px;
}