.biochemical-analysis {
    background-color: #1e77b7;
    padding: 20px;
    margin-bottom: 30px;
    margin-left: 40%;
    margin-right: 35%;
    color: white;
    font-size: 24px;
    border-radius: 10px;
    text-align: center;
}

.kits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.kit {
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease-in-out; /* Smooth transition for hover effect */
}

.kit p {
    margin: 10px 0;
    font-size: 14px;
}

.kit .icon {
    font-size: 50px;
    margin-bottom: 10px;
}

.kit.one {
    background-color: #a8d08d;
}

.kit.two {
    background-color: #6dbfa2;
}

.kit.three {
    background-color: #81c4e1;
}

.kit.four {
    background-color: #ea7b7b;
}

.kit.five {
    background-color: #f2c400;
}

.kit.six {
    background-color: #f6993f;
}

.kit.seven {
    background-color: #9b61d7;
}

.kit.eight {
    background-color: #f97bc5;
}

.kit.nine {
    background-color: #f05396;
}

.kit.ten {
    background-color: #95bdb6;
}

/* Hover effect: Scale the box and add a shadow */
.kit:hover {
    transform: scale(1.05); /* Slightly increase the size of the kit */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); /* Add a stronger shadow */
}

a {
    text-decoration: none;
    color: #2e3d49;
}

a:hover {
    text-decoration: underline;
}