.about-us-section {
    background-color: #fbfbfb;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.about-us-container {
    width: 1920px;
    max-width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    padding-left: 260px;
    margin: 0 auto;
    position: relative;
}

.about-us-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.about-us-text {
    padding-right: 40px;
}

.about-us-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
}

.title-line-1 {
    color: #2f4269;
    margin-bottom: 8px;
}

.title-line-2 {
    color: #eb610e;
}

.about-us-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    color: #636363;
}

.description-text {
    color: #636363;
}

.description-highlight {
    color: #eb610e;
    font-weight: 500;
}

.about-us-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.about-us-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 1920px) {
    .about-us-container {
        width: 100%;
        padding-left: 13.5%;
    }
}

@media (max-width: 1590px) {
    .about-us-container {
        padding-left: 0px;
        height: auto;
        min-height: 500px;
        flex-direction: column;
        justify-content: center;
    }
    
    .about-us-content {
  padding: 3%;
        margin-bottom: 40px;
    }
    
    .about-us-text {
        padding-right: 0;
        text-align: center;
    }
    
    .about-us-title {
        font-size: 40px;
    }
    
    .about-us-image {
        position: relative;
        width: 100%;
        height: 300px;
        right: auto;
        top: auto;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        min-height: auto;
        padding: 40px 0;
    }
    
    .about-us-container {
        padding-left: 20px;
        padding-right: 20px;
        min-height: auto;
    }
    
    .about-us-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .about-us-description {
        font-size: 18px;
    }
    
    .about-us-image {
        height: 250px;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .about-us-title {
        font-size: 28px;
    }
    
    .about-us-description {
        font-size: 18px;
    }
    
    .about-us-image {
        height: 200px;
    }
}