.ADVANTAGE1 {
    color: brown;
    font-size: 20px;
}

.div1 {
    width: 100%;
    height: 300px;
    background-color: pink;
}

.div2 {
    width: 50%;
    height: 250px;
    background-color: red;
    float: right;
}

.div3 {
    width: 50%;
    height: 250px;
    background-color: green;
    float: left;
}

.div4 {
    width: 100%;
    height: 400px;
    background-color: blue;
    clear: both;
}

/* Footer Styling */
footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    font-size: 18px;
}