.about-container {
    padding: 2rem 5%;
}

.about-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

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

.about-img-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-text {
    flex: 1.5;
    padding: 3rem !important;
}

.circle-glass-img {
    width: 350px;
    height: 350px;
    object-fit: cover; 
    border-radius: 50%;
    border: 6px solid var(--glass-border);
    box-shadow: 0 12px 40px rgba(4, 160, 67, 0.25); 
    transition: transform 0.4s ease;
}

.circle-glass-img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .about-row, .about-row.reverse-row {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .circle-glass-img {
        width: 250px;
        height: 250px;
    }

    .about-text {
        padding: 1.5rem !important;
    }
}