.about-section {
    padding: 48px 0;
    transition: background 0.3s;
}

.section-bg1 {
    background: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
    color: #fff;
}

.section-bg2 {
    background: linear-gradient(to right, #f8fafc 0%, #e0e7ef 100%);
    color: #333;
}

.about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1 1 350px;
    min-width: 260px;
}

.about-img {
    flex: 1 1 320px;
    min-width: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img img {
    max-width: 320px;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    background: #fff;
    object-fit: cover;
}

.about-section h1,
.about-section h2,
.about-section h3 {
    margin-top: 0;
    color: inherit;
}

.about-section ul,
.about-section ol {
    margin-bottom: 16px;
    padding-left: 22px;
}

.about-section li {
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .about-flex {
        flex-direction: column;
        gap: 24px;
        padding: 0 12px;
    }

    .about-img img {
        max-width: 90vw;
    }

    .about-section {
        padding: 32px 0;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 18px 0;
    }

    .about-img img {
        max-width: 98vw;
    }
}