.about-section{
    background-color: #333;
    color: #fff;
    width: 100%;
    min-height: 40vh;
    padding: 2rem;
}

.about-section h2{
    font-size: 32px;
    margin-bottom: 1rem;
}

.about-section p{
    font-size: 16px;
    line-height: 1.6;
}

.about-text{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-buttons{
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

@media (min-width: 1024px){
    .about-section h2{
        text-align: center;
    }

    .about-text{
        margin: 0 auto;
        width: 60%;
        flex-direction: row;
        gap: 1rem;
    }

    .about-text p{
        width: 50%;
    }

    .about-buttons{
        justify-content: center;
        margin-top: 2rem;
    }
}
