.section {
    background-color: #ffffff; 
    padding: 20px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    .section h2 {
        margin-top: 0;
    }

.image-container {
    text-align: center;
    margin: 20px 0;
}

.float-left {
    float: left;
    margin: 0 20px 20px 0; /* Adds space between the image and the text */
}

.float-right {
    float: right;
    margin: 0 20px 20px 40px; /* Adds space between the image and the text */
    filter: drop-shadow(10px 10px 5px gray);
}

