/* General Styles */
body {
    overflow: hidden;
    background-color: #00EB5E;
}

.pluxee_X {
    margin: auto;
    width: 50%;
    display: flex;
    justify-content: center;
    padding-bottom: 100px;
    padding-top: 100px;
}

.pluxee_X img {
    width: 20%;
}

.logos {
    margin: auto;
    width: 60%;
    display: flex;
    flex-wrap: wrap; /* Wrap logos to the next line if they don't fit */
    justify-content: center;
}

.logos img {
    width: 400px;
    height: auto;
    padding: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .pluxee_X {
        width: 70%; /* Adjust container width for smaller screens */
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .pluxee_X img {
        width: 30%; /* Adjust image size */
    }

    .logos {
        width: 80%; /* Adjust container width for logos */
    }

    .logos img {
        width: 300px; /* Scale down logos */
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .pluxee_X {
        width: 90%; /* Further reduce container width */
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .pluxee_X img {
        width: 40%; /* Scale images for smaller screens */
    }

    .logos {
        width: 100%; /* Full width for smaller screens */
        flex-direction: column; /* Stack logos vertically */
        align-items: center; /* Center align logos */
    }

    .logos img {
        width: 80%; /* Scale logos to fit smaller screens */
        padding: 10px;
    }

    a {
        text-decoration: none;
        color: inherit; /* Inherit text color if applicable */
    }
    
    a:hover img {
        transform: scale(1.05); /* Optional hover effect */
        transition: transform 0.3s ease; /* Smooth transition */
    }
}

@media (max-width: 480px) {
    .pluxee_X img {
        width: 50%; /* Further scale images for very small screens */
    }

    .logos img {
        width: 100%; /* Full width logos */
        padding: 5px;
    }
}
