body {
    font-family: 'Arial', sans-serif;
}

.pricing-card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin: 20px 0;
}

.badge {
    font-size: 1rem;
}

.features .list-group-item {
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #2980b9;
    border: none;
    padding: 12px 30px;
}

.btn-primary:hover {
    background-color: #2471a3;
}

form {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}