.about-us-container {
    font-family: Arial, sans-serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffc2c2;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: relative;
}

.about-us-header-content {
    flex: 1;
    text-align: center;
    margin-bottom: 20px;
}

.about-us-header-content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.about-us-header-content p {
    font-size: 2em;
}

.about-us-header-content-design-txt {
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(90deg, #4A00E0, #8E2DE2);
    color: transparent;
    font-style: normal;
    margin: -.2em;
    padding: .2em;
}

.left-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    padding-right: 20px;
    z-index: 1;
}

.left-content h1 {
    font-size: 5em;
    margin: 0;
    padding: 0;
}

.left-content p {
    display: block;
    padding-right: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #2b2b2b;
}

.left-content .outer-span {
    display: flex;
    margin: 0;
    font-size: 5em;
    padding-left: 30px;
}

.left-content .outer-span .bi-stars {
    margin: 0;
    padding: 0;
    color: #7022d4;
}

.left-content .inner-span {
    background: linear-gradient(270deg, #7100e2, #fa1062);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline {
    border-left: 1px solid hsl(0, 0%, 90%);
    position: relative;
    list-style: none;
  }
  
  .timeline .timeline-item {
    position: relative;
  }
  
  .timeline .timeline-item:after {
    position: absolute;
    display: block;
    top: 0;
  }
  
  .timeline .timeline-item:after {
    background-color: hsl(0, 0%, 90%);
    left: -38px;
    border-radius: 50%;
    height: 11px;
    width: 11px;
    content: "";
  }

.right-content {
    flex: 1;
    text-align: center;
    z-index: 1;
}

.right-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .about-us-container {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .header-content h1 {
        font-size: 2em;
    }

    .header-content p {
        font-size: 1em;
    }

    .left-content, .right-content {
        flex: 100%;
        padding: 10px 0;
    }

    .left-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .about-us-container {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .header-content h1 {
        font-size: 2em;
    }

    .header-content p {
        font-size: 1em;
    }

    .left-content, .right-content {
        flex: 100%;
        padding: 10px 0;
    }

    .left-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .left-content .outer-span {
        font-size: 3em;
    }

    .left-content h1 {
        font-size: 3em;
    }
}
