    .img-accordion-services-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .img-accordion-services-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #3b428c;
      text-align: center;
      margin-bottom: 30px;
    }

    .img-accordion-services-title span {
      color: #e63946;
    }

    .img-accordion-services-accordion {
      background-color: #FFFFFF;
      border-radius: 15px;
      box-shadow: 0 4px 20px rgba(59, 66, 140, 0.1);
      margin-bottom: 20px;
      overflow: hidden;
      position: relative; /* For positioning the progress bar */
    }

    .img-accordion-services-header {
      display: flex;
      align-items: center;
      padding: 20px;
      cursor: pointer;
      background-color: #fff9e6;
      border-bottom: 1px solid #bac6e0;
    }

    .img-accordion-services-header-icon {
      width: 40px;
      height: 40px;
      margin-right: 15px;
      border-radius: 8px;
    }

    .img-accordion-services-header h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: #3b428c;
      flex: 1;
    }

    .img-accordion-services-toggle {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background-color: #e63946;
      color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      transition: transform 0.3s ease;
    }

    .img-accordion-services-header.active .img-accordion-services-toggle {
      transform: rotate(180deg);
    }

    .img-accordion-services-content {
      display: none;
      padding: 20px;
      background-color: #fff9e6;
      border-top: 1px solid #bac6e0;
    }

    .img-accordion-services-content.active {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .img-accordion-services-content-text {
      flex: 1;
    }

    .img-accordion-services-content-text p {
      font-size: 1rem;
      color: #3b428c;
      line-height: 1.6;
      font-weight: 300;
      margin-bottom: 15px;
    }

    .img-accordion-services-content-image {
      width: 200px;
      height: 150px;
      border-radius: 8px;
      object-fit: cover;
    }

    .img-accordion-services-progress-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: #e63946;
      border: 2px solid #000000; /* Added 2px black border */
      box-sizing: border-box; /* Ensure border doesn't affect dimensions */
      transition: none;
    }

    .img-accordion-services-progress-bar.active {
      width: 100%;
      transition: width 10s linear; /* 10-second linear animation */
    }

    @media (max-width: 768px) {
      .img-accordion-services-title {
        font-size: 2rem;
      }

      .img-accordion-services-header h3 {
        font-size: 1rem;
      }

      .img-accordion-services-header-icon {
        width: 30px;
        height: 30px;
      }

      .img-accordion-services-content {
        flex-direction: column;
        align-items: flex-start;
      }

      .img-accordion-services-content-text p {
        font-size: 0.9rem;
      }

      .img-accordion-services-content-image {
        width: 100%;
        height: 120px;
      }
    }