.about-us-section {
    background-color: #FEFCF8;
    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;
    overflow: hidden;
}

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

.about-us-text {
    padding-right: 40px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.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: #8B8B8C;
    margin-bottom: 8px;
}

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

.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: #181819;
    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: 1530px) {
    .about-us-container {
        padding-left: 0px;
        padding-right: 0px;
        height: auto;
        min-height: 500px;
        flex-direction: column;
        justify-content: center;
    }
    
    .about-us-content {
        max-width: 100%;
        margin-bottom: 40px;
        width: 100%;
    }
    
    .about-us-text {
        padding-right: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .about-us-title {
        font-size: 40px;
    }
    
    .about-us-image {
        position: relative;
        width: 100%;
        height: 300px;
        right: auto;
        top: auto;
    }
}

@media (max-width: 1024px) {
    .about-us-container {
        padding-left: 40px;
        padding-right: 20px;
        min-height: 450px;
    }
    
    .about-us-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .about-us-description {
        font-size: 17px;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .about-us-text {
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    .about-us-container {
        padding-left: 30px;
        padding-right: 20px;
        min-height: 400px;
        flex-wrap: wrap;
    }
    
    .about-us-content {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }
    
    .about-us-title {
        font-size: 34px;
        margin-bottom: 20px;
    }
    
    .about-us-description {
        font-size: 16px;
        max-width: 85%;
        margin: 0 auto;
    }
    
    .about-us-image {
        height: 280px;
        margin-top: 10px;
    }
}

@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-content {
        width: 100%;
        max-width: 100%;
    }
    
    .about-us-text {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .about-us-title {
        font-size: 30px;
        margin-bottom: 18px;
    }
    
    .about-us-description {
        font-size: 16px;
        max-width: 100%;
        margin: 0;
    }
    
    .about-us-image {
        height: 250px;
        margin-top: 20px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-us-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .about-us-text {
        padding: 0 5px;
    }
    
    .about-us-title {
        font-size: 26px;
        margin-bottom: 15px;
    }
    
    .about-us-description {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .about-us-image {
        height: 200px;
        margin-top: 15px;
    }
}