body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #EDE8D0;
}

.bparagraph{
    position: inherit;
    text-align: center;
    width: 75%;
    margin: 0 auto;
}

p{
    position: relative;
    text-align: center;
   
    padding: 20px;
    border-radius: 20px;
}

        /* Section Styling */
        .content {
            display: flex;
            justify-content: space-between; /* Aligns the images to left and right */
            align-items: center; /* Vertically centers the images */
            padding: 20px;
        }

        .content div {
            flex: 1; /* Makes each div take equal width */
            text-align: center; /* Centers images within each div */
        }

        .content img {
            width: 100%;  /* Ensures images take up 50% of their container's width */
            height: auto; /* Maintains aspect ratio of images */
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .content {
                flex-direction: column; /* Stacks images vertically on smaller screens */
                text-align: center;
            }

            .content img {
                width: 80%; /* Reduces image size on mobile */
            }
        }



        