/* Root Div Styling */
.rootdiv {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 50px 10%;
}

/* Left & Right Side Styling */
.leftsidediv,
.rightsidediv {
    flex: 1;
    min-width: 300px;
}

/* Image Grid Styling */
.imagediv {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.imagediv img {
    width: 48%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.imagediv img:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Text Div Styling */
.textdiv {
    padding: 20px;
    text-align: left;
}

.textdiv h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #0056b3;
}

.textdiv p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .rootdiv {
        flex-direction: column;
        text-align: center;
    }

    .textdiv {
        text-align: center;
    }

    .imagediv {
        justify-content: center;
    }

    .imagediv img {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .imagediv {
        flex-direction: column;
        align-items: center;
    }

    .imagediv img {
        width: 80%;
    }
}
