.pricing-box {
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.pricing-box:hover {
    transform: scale(1.05);
}

.pricing-box .price {
    font-size: 36px;
    font-weight: 700;
    color: #2a9d8f;
}

.pricing-box .currency {
    font-size: 24px;
    vertical-align: top;
}

.pricing-box .amount {
    font-size: 48px;
    font-weight: bold;
}

.pricing-box .duration {
    font-size: 18px;
    color: #888;
}

.featured-plan {
    background-color: #f8f9fa;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-box ul {
    padding: 0;
    list-style-type: none;
}

.pricing-box ul li {
    font-size: 16px;
    color: #666;
    padding: 10px 0;
}

.pricing-box .btn {
    background-color: #2a9d8f;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
}

.pricing-box .btn:hover {
    background-color: #21867a;
}
   .shadow-hover:hover {
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    }
    .featured-plan {
        border: 2px solid #4CAF50;
    }
    .pricing-box h4 {
        color: #333;
    }
    .pricing-box {
        transition: all 0.3s ease;
    }
    .pricing-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

