#about {
    padding: 4rem 2rem; 
    background: white; 
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

#about::after {
    content: '';
    position: absolute;
    bottom: 0; 
    left: 0; 
    right: 0; 
    height: var(--stripe-thickness);
    background: var(--stripe-pattern);
}

#about h2 {
    font-size: 2.5rem; 
    margin-bottom: 2rem; 
    color: var(--secondary-color); 
    text-transform: uppercase; 
    text-align: center; 
    letter-spacing: 2px; 
    font-weight: bold; 
    position: relative;
}

#about h2::after {
    content: '';
    position: absolute;
    bottom: -10px; 
    left: 50%; 
    transform: translateX(-50%);
    width: 100px; 
    height: 4px; 
    background: var(--primary-color);
}

#about p {
    max-width: 700px; 
    margin: 0 auto; 
    font-size: 1.1rem; 
    color: #333; 
    line-height: 1.8; 
    font-weight: 500;
    text-align: justify; 
    border-left: var(--border-left-color);
    padding-left: 2rem;
}

#about img {
    border-radius: 30px; 
    box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.1);
    border: #ffffffd5 solid 10px;
}

@media (max-width: 1200px) {
    #about {
        flex-direction: column;
        text-align: center;
    }

    #about img {
        margin-bottom: 2rem;
        max-width: 80%;
    }
}

@media (max-width: 700px) {
    #about img {
        width: 365px;
        height: 350px
    }
}

@media (max-width: 550px) {
    #about img {
        width: 265px;
        height: 250px
    }
    #about p {
        font-size: 1rem;
        line-height: 1.5;
    }
}