.about-section{
    width: 100%;
    min-height: 50vh;
    margin-top: 20px;
}

.content-about{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 12px;
}

.content-about img{
    max-height: 280px;
    filter: drop-shadow(0px 12px 28px rgba(0, 0, 0, 0.6));
}


.content-about span{
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 1.7vw, 2.5rem);
    font-weight: 300;
    color: white;
    margin: 12px 0px;
    text-align: center;
}

.content-about span b{
    font-weight:700;
}
  


@media (min-width: 1024px) {
   .content-about{
       flex-direction: row;
       padding: 32px;
   }

   .content-about img{
    max-height: 400px;
}

.content-about span{
    padding: 12px;
    text-align: left;
     font-size: clamp(1.2rem, 1.4vw, 2.5rem);
}
}

