.about__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 50px 10px;
    flex-wrap: wrap;
}

.about__img {
    flex: 1 1 300px;
    max-width: 500px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    object-fit: cover;
}

.about__text {
    flex: 1 1 300px;
}

.about__title {
    font-size: clamp(24px, 5vw, 36px);
    margin-bottom: 20px;
    color: var(--accent);
}

.about__text p {
    font-size: clamp(16px, 3vw, 18px);
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .about__inner {
        flex-direction: column;
        text-align: center;
    }

    .about__img {

        margin-bottom: 20px;
    }

    .about__text p {
        text-align: center;
    }
}
