.pricing-card {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    position: relative;
    text-align: center;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.pricing-header {
    padding: 30px 20px;
    color: #fff;
}
.pricing-header.standard {
    background: linear-gradient(135deg, #0401c0ff, #2971e7);
}
.pricing-header.premium {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}
.pricing-header h4 {
    margin: 0;
    font-weight: bold;
    font-size: 22px;
}
.pricing-header h2 {
    font-size: 40px;
    margin: 10px 0;
    font-weight: 700;
}
.pricing-header small {
    font-size: 15px;
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.9);
}
.pricing-body {
    padding: 20px 30px;
}
.pricing-body ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.pricing-body li {
    font-size: 16px;
    margin-bottom: 12px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: start;
    color: #444;
}
.pricing-body li i {
    font-size: 18px;
    margin-right: 8px;
}
.pricing-body li.included i {
    color: #28a745;
}
.pricing-body li.excluded i {
    color: #dc3545;
}
.pricing-footer {
    padding-bottom: 25px;
}
.pricing-footer .btn {
    border-radius: 25px;
    padding: 12px 70px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    color: #fff;
    transition: all 0.3s ease;
}
.standard-btn {
    background: linear-gradient(135deg, #0401c0ff, #2971e7);
}
.premium-btn {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}
.pricing-footer .btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}
