/*.pricing-section {
    padding: 80px 20px;
    background: #f9fbfd;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.pricing-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-subtitle {
    color: #666;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.pricing-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    position: relative;
    transition: 0.3s;
}

    .pricing-card:hover {
        transform: translateY(-8px);
    }

    .pricing-card h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

.plan-desc {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.pricing-card h4 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #111;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

    .pricing-card ul li {
        margin: 8px 0;
        color: #444;
    }*/

.btnPrice {
    display: inline-block;
    padding: 12px 20px;
    background: #e5e7eb;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color:black;
    text-decoration:none;
}

    .btn.primaryPrice {
        background: #2563eb;
        color: #fff;
    }

    .btn:hover {
        opacity: 0.9;
    text-decoration:none; 

    }

.btnPrice:hover {
    color: black;
    opacity: 0.9;
    text-decoration: none;
}

.note {
    font-size: 12px;
    color: #888;
    margin-top: 8px;
}

/* Highlight Most Popular */
.popular {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #fff;
    padding: 7px 14px;
    font-size: 14px;
    border-radius: 20px;
}
