*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/* ====== Card Section Styling ====== */
.card5 {
    padding: 50px 20px;
    background-color: #f4f9fc; /* Light blue medical background */
}

.card5 .container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Desktop: 5 columns */
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.container-items {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #3bb78f; /* Accent green top border */
}

.container-items img {
    max-width: 80px;
    height: auto;
    margin-bottom: 15px;
}

.container-items p {
    font-size: 1.3rem; /* increased from 1rem */
    color: #333;
    line-height: 1.4;
}

/* Hover Animation */
.container-items:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* ====== Tablet View ====== */
@media (max-width: 1024px) {
    .card5 .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ====== Mobile View ====== */
@media (max-width: 600px) {
    .card5 .container {
        grid-template-columns: 1fr;
    }
    .container-items {
        padding: 20px;
    }
    .container-items img {
        max-width: 60px;
    }
}
