.about {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

.about img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

@media (min-width: 768px) {
    .about-content {
        flex-direction: row;
        gap: 40px;
    }

    .about img {
        flex: 1;
        max-width: 50%;
    }

    .about-description {
        flex: 2;
    }
}
