/* Media Queries for Mobile Devices */
@media only screen and (max-width: 767px) {
    /* Additional sections */
    .additional-sections {
        width: 100%; /* Adjust width to occupy full width */
        float: none; /* Remove float */
        box-sizing: border-box;
        overflow: hidden;
        margin-bottom: 20px; /* Increase gap */
    }

    .additional-sections ul {
        width: 100%; /* Ensure full width */
        padding: 0; /* Remove default padding */
    }

    .additional-sections ul li {
        margin-bottom: 15px; /* Adjust margin */
    }

    /* Home section */
    .home-section {
        width: 100%; /* Adjust width to occupy full width */
        float: none; /* Remove float */
        box-sizing: border-box;
        overflow: hidden;
        margin-bottom: 20px; /* Increase gap */
    }

    .content-sir {
        padding: 20px;
        margin-right: 0;
    }

    .image-container-sir {
        width: 100px;
        height: 100px;
        margin: 0 auto;
        overflow: hidden;
        border-radius: 50%;
    }

    .text-container-sir {
        text-align: center;
        margin-top: 20px;
    }

    .text-container-sir .para1 {
        text-align: justify;
    }
}

/* Media Queries for Tablets */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    /* Add tablet specific styles here if needed */
}

/* Media Queries for Small Laptops and Desktops */
@media only screen and (min-width: 1024px) {
    /* Add styles for small laptops and desktops here if needed */
}
