body {
    background-color: #f8f9fa;
}

.pricing-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.pricing-header {
    border-radius: 15px 15px 0 0;
    color: white;
}

.pricing-header h3 {
    color: white;
}

.basic-header {
    background: linear-gradient(45deg, #b82828, #b82828);
}

.pro-header {
    background: linear-gradient(45deg, #b82828, #b82828);
}

.enterprise-header {
    background: linear-gradient(45deg, #b82828, #b82828);
}

.btn-custom {
    border-radius: 50px;
    padding: 8px 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.feature-list li:last-child {
    border-bottom: none;
}