/* --- PRICING SECTION ONLY --- */

.pricing-container {
    max-width: 1100px;
    margin: 50px auto;
    text-align: center;
    font-family: inherit; /* Don't override your global style */
}

.pricing-title {
    font-size: 35px;
    margin-bottom: 40px;
    color: #333;
}

.pricing-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
}

.pricing-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 30%;
    padding: 30px;
    transition: 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card h2 {
    margin-bottom: 10px;
    font-size: 24px;
}

.price {
    font-size: 30px;
    margin: 15px 0;
    font-weight: bold;
    color: #ffa500;
}

.price span {
    font-size: 16px;
    color: #666;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.pricing-card ul li {
    margin: 10px 0;
    color: #444;
}

.select-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: #ffa500;
    color: white;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.select-btn:hover {
    background: #cc8300;
}

/* Recommended Plan Highlight */
.recommended {
    border: 3px solid #ffa500;
}

.badge {
    background: #ffa500;
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    position: absolute;
    top: -12px;
    right: 20px;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-card {
        width: 46%;
    }
}

@media (max-width: 600px) {
    .pricing-card {
        width: 100%;
    }
}