/* History Section - Image & Text Layout */
.history {
    display: flex;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.history .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.history-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
}

.history p {
    max-width: 700px;
    line-height: 1.7;
    color: #333;
    margin-top: 1rem;   
}

@media (min-width: 768px) {
    .history .container {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
    .about-text {
        margin-left: 2rem;
    }
    
}
