body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    margin: 0;
    padding: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-table {
    max-width: 1000px;
    margin: auto;
}

.plans {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.plan {
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.plan:hover {
    transform: translateY(-5px);
    border-color: #007bff;
}

.plan h2 {
    margin-top: 0;
    color: #333;
}

.price {
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
    color: #007bff;
}

ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

li {
    margin-bottom: 10px;
    color: #555;
}

button {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

.basic {
    border-top: 4px solid #6c757d;
}

.standard {
    border-top: 4px solid #28a745;
}

.premium {
    border-top: 4px solid #ffc107;
}