.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content {
   width: 800px;
   height: auto;

}

.about-box {
    width: 800px;
    height: auto;
    display: flex;
    flex-direction: row;
}

.box-item {
    margin-top: 20px;
    flex: 1;
    
}

.box-item h5 {
    font-size: 18px;
    font-weight: 500;
}


.number {
    color: #D91966;
    font-size: 36px;
    font-weight: 800px;
}



.about-image img {
    width: 100%;
    max-width: 600px;
}

.about-content p {
    font-weight: 300;
    font-size: 14px;
}

@media (max-width: 1200px) {
    .about-content,
    .about-box {
        width: 90%;
        max-width: 900px;
    }
    .about-image img {
        max-width: 500px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .about-content,
    .about-box {
        width: 100%;
        max-width: 700px;
    }
    .about-image img {
        max-width: 400px;
    }
}

/* Small tablets */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        padding: 30px 10px;
    }
    .about-box {
        flex-direction: column;
        gap: 10px;
    }
    .about-content,
    .about-box {
        max-width: 100%;
        width: 100%;
    }
    .about-image img {
        max-width: 100%;
    }
    .number {
        font-size: 28px;
    }
}

/* Mobile devices */
@media (max-width: 678px) {
    .about-section {
        padding: 20px 5px;
    }
    .about-content,
    .about-box {
        width: 100%;
        max-width: 100%;
    }
    .box-item h5 {
        font-size: 16px;
    }
    .number {
        font-size: 22px;
    }
    .about-content p {
        font-size: 12px;
    }
    .about-image img {
        max-width: 100%;
    }
}