/* Pricing Section */
.pricing-section {
    background-color: #f8f9fa;
}

.pricing-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.premium {
    border: 2px solid #4434b7;
}

/* Card Header */
.pricing-card .card-header {
    border-bottom: none;
    position: relative;
}

.pricing-card.premium .card-header {
    background: linear-gradient(306deg, #4434b7, #8351b9);
}

.pricing-card.platinum .card-header {
    background: linear-gradient(135deg, #212529, #343a40);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: 0.2rem;
    right: 20px;
    background: #ffc107;
    color: #212529;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

/* Price Styling */
.price {
    margin: 10px 0;
}

.price span {
    font-size: 16px;
    opacity: 0.8;
}

/* List Items */
.list-group-item {
    padding: 12px 20px;
    border-color: rgba(0, 0, 0, 0.05);
}

.list-group-item span:first-child {
    font-weight: 500;
}

/* Badges */
.badge {
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: 600;
}
 

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 20px;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
} 