body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.profile,
.factory,
.certification {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.profile {
    background-color: #f6f6f6;
    padding-bottom: 50px;
}

.profile .content {
    /* width: 80%; */
    margin: 0 auto;
    padding: 20px;
}

.profile .content p:not(.title) {
    font-size: 16px;
    color: #333;
    line-height: 30px;
}

.factoryContent {
    /* width: 80%; */
    padding-bottom: 130px;
    position: relative;
}

.factoryContent img {
    width: 100%;
    height: 100%;
}

.certification {
    background-color: #f6f6f6;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 150px;
}

.certification .text {
    text-align: center;
}

.certification .text p {
    line-height: 1.5;
}

.certificationContent {
    /* width: 80%; */
    padding-top: 30px;
}

.certificationContent img {
    width: 100%;
    height: 100%;
}

.factory p.title {
    padding: 110px 0 80px;
}

.certification p.title {
    padding: 110px 0 40px;
}
@media screen and (max-width: 992px) {
    .factory {
        padding-bottom: 0.4rem;
    }
    .certification{
        padding-bottom: 2rem;
    }
    .factory p.title,.certification p.title {
        padding: 1.2rem 0 0.8rem;
    }
    .certification .text p:not(.title){
        font-weight: 500;
        margin-bottom: 0.4rem;
    }
    .profile .content {
        padding: 0 0.5rem;
    }
    .profile .content p:not(.title){
        margin-bottom: 0.5rem;
    }
}