Pricing
/* Base styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f2f2f2;
}
.pricing-table {
max-width: 800px;
margin: 20px auto;
background-color: #fff;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
border-radius: 5px;
}
.plan {
text-align: center;
padding: 40px 20px;
border-bottom: 2px solid #eee;
}
.plan h2 {
font-size: 24px;
color: #333;
}
.plan p {
font-size: 16px;
color: #777;
}
.plan-price {
font-size: 36px;
font-weight: bold;
color: #007BFF;
margin: 20px 0;
}
.cta-button {
display: inline-block;
padding: 10px 20px;
background-color: #007BFF;
color: #fff;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background-color 0.3s ease;
}
.cta-button:hover {
background-color: #0056b3;
}
/* Responsive styles */
@media screen and (max-width: 600px) {
.plan {
padding: 20px;
}
.plan h2 {
font-size: 20px;
}
.plan-price {
font-size: 28px;
}
}