.company-about-wrapper {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      padding: 2rem;
      margin: 3rem auto;
      border-radius: 1.5rem;
      max-width: 80rem;
      min-height: 700px;
      /* overflow: hidden; */
    }

    /* Image Section */
    .company-images {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      width: 100%;
      height: auto;
    }

    .company-img-left {
      width: 100%;
      border-radius: 0.5rem;
      flex-shrink: 0;
    }

    .company-img-right {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
    }

    .company-img-top {
      width: 100%;
      border-radius: 0.5rem;
    }

    .experience-highlight {
      background-color: #2d1b10;
      color: white;
      text-align: center;
      padding: 0.5rem;
      margin-top: 0.5rem;
      border-radius: 0.5rem;
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
      width: 100%;
    }

    .experience-number {
      font-size: 2rem;
      font-weight: bold;
    }

    .experience-label {
      font-size: 0.875rem;
    }

    /* Content Section */
    .company-info {
      width: 100%;
      background-color: #c1d8c3;
      padding: 1.5rem;
      border-radius: 1.5rem;
      height: auto;
    }

    .info-subtitle {
      color: #E4740D;
      font-weight: bold;
      text-transform: uppercase;
      font-size: 0.875rem;
      margin-bottom: 1rem;
    }

    .info-title {
      font-size: 2.5rem;
      color: #E4740D;
      font-weight: bold;
      text-transform: uppercase;
    }

    .info-description {
      margin-top: 1rem;
      color: #374151;
    }

    .info-features {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.5rem;
      margin-top: 1rem;

    }

    .info-features li {
      background-color: white;
      color: #374151;
      padding: 0.5rem;
      border-radius: 0.5rem;
      display: flex;
      align-items: center;
    }

    .info-features li span {
      color: red;
      margin-right: 0.5rem;
    }

    /* Button Styling */
    .info-button {
      margin-top: 1rem;
      background-color: #dc2626;
      color: white;
      padding: 0.5rem 1.5rem;
      border-radius: 9999px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .info-button:hover {
      background-color: #b91c1c;
    }



    /* Responsive Layout */
    @media (min-width: 840px) {
      .company-about-wrapper {
        flex-direction: row;
        align-items: center;
      }

      .company-images {
        flex-direction: row;
        width: 80%;
        height: 500px;
      }

      .company-img-left,
      .company-img-right {
        width: 50%;
        height: auto;
      }

      .company-info {
        width: 75%;
        height: 500px;
      }

      .info-features {
        grid-template-columns: 1fr 1fr;
      }
    }
@media (min-width: 641px) and (max-width: 900px) {
  .scale-wrapper {
    transform: scale(0.75);
    transform-origin: top center;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .scale-wrapper {
    transform: scale(0.85);
    transform-origin: top center;
  }
}

@media (min-width: 1101px) and (max-width: 1258px) {
  .scale-wrapper {
    transform: scale(0.95);
    transform-origin: top center;
  }
}




.scale-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}