.about-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-row {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 50px;
}

.about-row.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
    padding: 20px;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

.about-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: #eee;
}

@media (max-width: 992px) {
    .about-row, .about-row.reverse {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }

    .about-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-img img {
        height: 300px;
    }
}