.about-page{
    padding: 100px 0;
    position: relative;
    height: 100vh;
}
.about-page .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.8;
    backdrop-filter: blur(10px);
}
.about-page-content{
    margin-bottom: 30px;
    position: relative;
    z-index: 12344343;
}
.about-page-content h2{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}
.about-page-content p{
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
}

@media (max-width: 768px) {
    .about-page{
        height: auto;
    }

    .about-page-content p{
        font-size: 14px;
    }
    
    .about-page{
        padding: 70px 0;
    }
}