.ee-kart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ee-kart-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ee-kart-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.ee-kart-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #C8102E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.ee-kart-icon i {
    font-size: 32px;
    color: #ffffff;
}

.ee-kart-icon svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.ee-kart-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
    line-height: 1.3;
}

.ee-kart-desc {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 24px;
}

.ee-kart-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    border: 2px solid #C8102E;
    border-radius: 25px;
    color: #C8102E;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.ee-kart-btn:hover {
    background-color: #C8102E;
    color: #ffffff;
}

.ee-kart-btn-arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.ee-kart-btn:hover .ee-kart-btn-arrow {
    transform: translateX(4px);
}
