.about-section {
    padding: 100px 15%;
    background-color: var(--color-light);
    width: 100%;
}
.about-section .container {
    width: 100%;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; 
    gap: 3rem; 
    align-items: center;
    justify-content: space-between;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: left; 
}


.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}


.about-content .lead {
    font-size: 1.25rem;
    font-weight: 300; 
    color: var(--color-dark);
    line-height: 1.6;
}

.about-content p:not(.lead) {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
}

@media (min-width: 768px) and (max-width: 1023px) {
    .about-section .container {
        padding: 0 6%; 
    }
    
    .about-grid {
        gap: 2rem;
    }
}


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

    .about-section .container {
        padding: 0 6%; 
    }

    .about-grid {
        grid-template-columns: 1fr; 
        gap: 2rem;
        text-align: center; 
    }

    .about-image {
        order: 1; 
    }

    .about-image img {
        width: 200px;
        height: 200px;
    }

    .about-content {
        order: 2;
        text-align: center;
    }

    .about-content h2 {
        font-size: 2rem; 
    }

    .about-content .lead {
        font-size: 1.15rem;
    }
}