.about-container {
    max-width: 100%;
    padding: 0;
}

.about-title {
    text-align: center;
    padding: 2rem 0;
}

.about-row {
    display: flex;
    flex-wrap: wrap; 
    align-items: stretch;
    width: 100%;
}

.about-col {
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.5;
}

.about_image {
    position: relative;
    overflow: hidden;
}

.about_image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: top; 
    display: block;
}

@media (max-width: 767px) {
    .about-row {
        flex-direction: column; 
    }
    
    .about-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .about-text {
        padding: 30px 24px;
        order: 2;
        font-size: 0.875rem;
    }
    
    .about_image {
        order: 1; 
        height: 300px;
    }
    
    .about_image img {
        position: static;
    }
}