/* body {
    font-family: "Raleway", sans-serif;
    padding: 20px;
    margin: 0;
}



.image-content-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
}

.image-content-section .content {
    font-family: "Raleway", sans-serif; 
    text-align: left;
    line-height: 1.5; 
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.image-content-section.odd {
    flex-direction: row;
    justify-content: flex-start;
}

.image-content-section:not(.odd) {
    flex-direction: row-reverse;
    justify-content: space-between;
}

.image-content-section.odd .content {
    color: hsl(220, 15%, 20%);
}

.image {
    width: 150px;
    max-width: 40%; 
    margin: 0 20px; 
    border-radius: 10px; 
    border: 2px solid #ccc;
    object-fit: cover;
}

.image-content-section:hover {
    background-color: hsl(106, 100%, 95%);
    transition: background-color 0.3s ease;
}

.content p {
    font-family: "Raleway", sans-serif !important;
}


#myBtn {
    display: block; 
    position: fixed; 
    bottom: 20px;
    right: 30px; 
    z-index: 99; 
    border: none;
    outline: none;
    background-color: green;
    color: white;
    cursor: pointer;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    
} */

body {
    font-family: "Raleway", sans-serif;
    padding: 20px;
    margin: 0;
}

.image-content-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    flex-wrap: wrap; /* Allow wrapping */
    gap: 20px;
}

.image-content-section .content {
    font-family: "Raleway", sans-serif; 
    text-align: left;
    line-height: 1.5; 
    font-size: 16px;
    margin: 0;
    padding: 0;
    flex: 1;
    min-width: 200px;
}

.image-content-section.odd {
    flex-direction: row;
    justify-content: flex-start;
}

.image-content-section:not(.odd) {
    flex-direction: row-reverse;
    justify-content: space-between;
}

.image-content-section.odd .content {
    color: hsl(220, 15%, 20%);
}

.image {
    width: 150px;
    max-width: 100%; 
    margin: 0 20px; 
    border-radius: 10px; 
    border: 2px solid #ccc;
    object-fit: cover;
    flex-shrink: 0;
}

/* Hover effect */
.image-content-section:hover {
    background-color: hsl(106, 100%, 95%);
    transition: background-color 0.3s ease;
}

/* Ensure font applies */
.content p {
    font-family: "Raleway", sans-serif !important;
}

/* Go to Top Button */
#myBtn {
    display: block; 
    position: fixed; 
    bottom: 20px;
    right: 30px; 
    z-index: 99; 
    border: none;
    outline: none;
    background-color: green;
    color: white;
    cursor: pointer;
    padding: 10px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

/* Responsive Design */
@media only screen and (max-width: 1024px) {
    .image-content-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .image-content-section:not(.odd),
    .image-content-section.odd {
        flex-direction: column;
        justify-content: center;
    }

    .image {
        margin: 0 auto 20px;
        width: 80%;
    }

    .image-content-section .content {
        text-align: center;
        font-size: 15px;
    }
}

@media only screen and (max-width: 600px) {
    body {
        padding: 10px;
    }

    .image-content-section {
        padding: 10px;
        margin-bottom: 20px;
    }

    .image {
        width: 100%;
    }

    .image-content-section .content {
        font-size: 14px;
    }

    #myBtn {
        height: 35px;
        width: 35px;
        padding: 8px;
    }
}
