* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f4f4;
    padding: 20px;
}

.container_card {
    background: linear-gradient(90deg, rgb(146, 231, 222) 0%, rgb(123, 123, 172) 36%, rgb(151, 166, 170) 99%);
    margin: 25px auto;
    padding: 25px;
    border-radius: 13px;
    box-shadow: 0 20px 50px rgba(212, 113, 63, 0.3);
    max-width: 1200px;
}

.head > h1 {
    color: #fff;
    text-align: center;
    font-size: 2rem;
}

.h_line {
    margin: 10px auto;
    height: 3px;
    background-color: #ff4d4d;
    border-radius: 13px;
    width: 50%;
}

.item_card_container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.iem_list_card {
    background-color: #fff;
    border-radius: 13px;
    flex: 0 0 calc(33.33% - 10px);
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.iem_list_card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.item_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item_list > p {
    font-weight: 600;
    font-size: 18px;
    color: #333;
}

.item_list > a {
    font-size: 14px;
    text-decoration: none;
    background-color: #007bff;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    transition: 0.3s ease;
}

.item_list > a:hover {
    background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
    .iem_list_card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .iem_list_card {
        flex: 0 0 100%;
    }
}
