/* Responsive Image Logic */
.custom-pharma-img {
    max-height: 550px; /* Limits height on desktop so it doesn't push the section too long */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

    .custom-pharma-img:hover {
        transform: scale(1.02); /* Subtle high-tech hover effect */
    }

/* Accordion Refinement */
.custom-accordion-style-1 .card-header a {
    text-decoration: none;
    display: block;
    padding: 12px 15px;
}

/* Mobile Specifics */
@media (max-width: 767px) {
    .custom-pharma-img {
        max-height: 350px; /* Smaller height for phones */
        margin-top: 20px;
    }

    /* Adjusting header text for mobile */
    .container h2 {
        font-size: 1.7rem;
    }
}
