body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fb;
    padding: 20px;
}

/* CATEGORY HEADER */
.category-header {
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.category-header h2 {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
}

/* CARD BASE */
.pricing-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
    position: relative;
}
.pricing-category {
    margin-bottom: 50px; /* space between sections */
}

/* HOVER (same for all cards) */
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* POPULAR FIX */
.pricing-card.popular {
    border: 2px solid #ff7a18;
}

/* IMPORTANT: remove scaling */
.pricing-card.popular:hover {
    transform: translateY(-6px); /* same as others */
}

.badge-popular {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff7a18;
    color: #fff;
    padding: 4px 10px;
    font-size: 0.7rem;
    border-radius: 20px;
}

/* ICON */
.icon-circle {
    width: 50px;
    height: 50px;
    background: #f1f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.icon-circle i {
    color: #4f46e5;
    font-size: 20px;
}

/* TEXT */
.sessions-number {
    font-size: 28px;
    font-weight: 700;
    color: #222;
}

.sessions-label {
    font-size: 14px;
    color: #777;
}

/* PRICE */
.price-section {
    margin: 15px 0;
}

.price-per-session {
    font-size: 22px;
    font-weight: 700;
    color: #111;
}

.cut-price {
    text-decoration: line-through;
    color: red;
    font-size: 14px;
    margin-right: 5px;
}

.total-price {
    font-size: 16px;
    color: #555;
}

/* VALIDITY */
.validity-badge {
    background: #eef2ff;
    color: #4f46e5;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin: 10px 0;
}

/* FEATURES */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    text-align: left;
}

.feature-list li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #444;
}

.feature-list i {
    color: #22c55e;
    margin-right: 6px;
}

/* BUTTON */
.btn-select {
    background: #4f46e5;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    transition: 0.3s;
}

.btn-select:hover {
    background: #3730a3;
}

/* RESPONSIVE */
@media (max-width: 575px) {
    .category-header h2 {
        font-size: 1.1rem;
    }
}