
.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
    width: 80%;
    margin-top: 100px;
    background: aliceblue;
}

.about-content {
    flex: 1;
    padding: 20px;
    width: 60%;
}

.about-content h1 {
    font-size: 40px;
    color: #013173;
    margin-top: 0;
}

.about-content h2 {
    font-size: 24px;
    color: #4d4d4d;
    margin-top: 10px;
}

.about-content p {
    font-size: 16px;
    color: #4d4d4d;
    margin-top: 20px;
    font-size: 16px;
    line-height: 28px;
}

.image-section {
    width:40%;
    /*transform: translateY(-100px);*/

}

.image {
    width: 500px;
    height: 100vh;
    background-image: url('https://cdni.iconscout.com/illustration/premium/thumb/milkman-is-filling-milk-in-container-with-bucket-illustration-download-svg-png-gif-file-formats--delicious-logo-pack-people-illustrations-2252598.png?f=webp'); /* Replace with your image */
    
    background-repeat: no-repeat;
}






.checklist {
    list-style: none;
    padding: 0;
}
.checklist li {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 10px;
    color: #4d4d4d;
}
.checklist li::before {
    content: '\2713'; /* Unicode checkmark */
    font-size: 22px;
    color: purple;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .about {
        flex-direction: column; /* Stack content vertically */
        padding: 0;
    }
    .about-content {
        width: 100%; /* Occupy full width */
        margin-bottom: 20px; /* Add spacing between content and image */
    }
    .image-section {
        width: 100%; /* Occupy full width */
        transform: translateY(0px);
    }
    .image {
        width: 100%; /* Occupy full width */
        height: auto; /* Maintain aspect ratio */
    }
    .checklist {
        width: 100%;
    }
    .checklist li {
        display: block; /* Stack list items vertically */
        margin-bottom: 10px;
    }
}