.card-child {
    width: 100%;
    max-width: 350px;
    height: auto;
    max-height: 380px;
    border: 1px solid #ccc;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    cursor: pointer;
}

.card-child:hover {
    transform: translateY(-5px);
    border-color: #007bff;
}

.card-child img {
    height: 180px;
    object-fit: contain;
    background: #f9f9f9;
    padding: 10px;
}

.card-child.active {
    border: 2px solid #0664c9;
    box-shadow: 0 0 10px rgba(4, 36, 71, 0.3);
    transition: box-shadow 0.3s ease;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.75rem;
}

.calss-text {
    list-style: none;
    padding-left: 0;
    font-size: 0.95rem;
}

.calss-text li {
    margin-bottom: 0.4rem;
}

.row.g-4 {
    justify-content: center;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 45%;
        max-width: 45%;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
    }
}