<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pricing Plans</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<style>
.bg-primary-custom { background-color: #4C3BCF; }
.bg-secondary-custom { background-color: #4B70F5; }
.bg-tertiary-custom { background-color: #3DC2EC; }
.text-primary-custom { color: #4C3BCF; }
.text-secondary-custom { color: #4B70F5; }
.text-tertiary-custom { color: #3DC2EC; }
</style>
</head>
<body class="bg-light">
<div class="container py-5">
<div class="row">
<div class="col-md-3 mb-4">
<div class="card shadow-sm h-100">
<div class="card-body text-center">
<h5 class="card-title text-primary-custom">Basic</h5>
<h6 class="card-subtitle mb-2 text-muted">$19<span class="text-tertiary-custom">/month</span></h6>
<ul class="list-unstyled my-4">
<li>10 GB Storage</li>
<li>100 Emails</li>
<li>24/7 Support</li>
</ul>
<button class="btn bg-secondary-custom text-white">Choose Plan</button>
</div>
</div>
</div>
<div class="col-md-3 mb-4">
<div class="card shadow-sm h-100">
<div class="card-body text-center">
<h5 class="card-title text-primary-custom">Pro</h5>
<h6 class="card-subtitle mb-2 text-muted">$49<span class="text-tertiary-custom">/month</span></h6>
<ul class="list-unstyled my-4">
<li>50 GB Storage</li>
<li>500 Emails</li>
<li>Priority Support</li>
</ul>
<button class="btn bg-secondary-custom text-white">Choose Plan</button>
</div>
</div>
</div>
<div class="col-md-3 mb-4">
<div class="card shadow-sm h-100">
<div class="card-body text-center">
<h5 class="card-title text-primary-custom">Enterprise</h5>
<h6 class="card-subtitle mb-2 text-muted">$99<span class="text-tertiary-custom">/month</span></h6>
<ul class="list-unstyled my-4">
<li>200 GB Storage</li>
<li>2000 Emails</li>
<li>24/7 Priority Support</li>
</ul>
<button class="btn bg-secondary-custom text-white">Choose Plan</button>
</div>
</div>
</div>
<div class="col-md-3 mb-4">
<div class="card shadow-sm h-100">
<div class="card-body text-center">
<h5 class="card-title text-primary-custom">Premium</h5>
<h6 class="card-subtitle mb-2 text-muted">$199<span class="text-tertiary-custom">/month</span></h6>
<ul class="list-unstyled my-4">
<li>500 GB Storage</li>
<li>5000 Emails</li>
<li>24/7 Premium Support</li>
</ul>
<button class="btn bg-secondary-custom text-white">Choose Plan</button>
</div>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>