/* photo ra text side by side lyauna ko lagi */

/* Container for image and text */
.image-text-container {
    display: flex; /* Use Flexbox */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Image styles */
.image-container {
    flex: 1; /* Take up available space */
    max-width: 30%; /* Limit image width */
}
.image {
    display: block;
    width: 90%; /* Make image responsive */
    height: auto;
    margin-top: 5%;
    margin-left: auto;
    margin-right: auto;
}

/* Text styles */
.text-container {
    flex: 1; /* Take up available space */
    max-width: 70%; /* Limit text width */
    padding: 20px; /* Add some spacing */
}

/* Media query for smaller screens */
@media screen and (max-width: 600px) {
    .image-text-container {
        flex-direction: column; /* Stack elements vertically */
    }
    .image-container, .text-container {
        max-width: 100%; /* Full width for both image and text */
    }
}
