
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}
@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.plan {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.plan h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.plan .price {
    font-size: 2em;
    font-weight: bold;
    margin: 15px 0;
}
.plan ul {
    list-style: none;
    padding: 0;
    color: #666;
}
.plan ul li {
    margin: 10px 0;
}
.plan button {
    margin-top: 15px;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    background: #007bff;
    color: white;
}


.plan.highlightplan {
    background: #c9e3ff;
    color: white;
}