.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* background-color: #f5f5f5; */
    margin: 0;
    padding: 0;
}

.pricing {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-box {
    border: 1px solid #ddd;
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    max-width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.pricing h4 {
    font-size: 20px;
    margin: 0 0 10px;
    color: #333;
}

.price {
    font-size: 24px;
    color: #009688;
    margin: 0;
}

.pricing-box ul {
    margin: 20px 0;
    padding-left: 20px;
}

.pricing-box ul li {
    list-style-type: disc;
    margin-bottom: 5px;
    font-size: 14px;
}

.pricing-box button {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 10px 0;
    background-color: #009688;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pricing-box button:hover {
    background-color: #00796b;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.button-success {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

.button-error {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

/* Tab styles */
.pricing-box .tab-container {
    display: flex;
    margin-bottom: 20px;
}

.pricing-box .tab {
    flex: 1;
    text-align: center;
    cursor: pointer;
    padding: 10px 0;
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    transition: background-color 0.3s;
    font-size: 14px;
}

.pricing-box .tab.active {
    border: 1px solid gold;
    background-color: blanchedalmond;
}

.pricing-box .tab-content {
    display: none;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #fff;
}


/* Media queries for responsiveness */
/* @media (max-width: 768px) {
    .pure-g {
        flex-direction: column;
        align-items: center;
    }
    .pure-u-7-24 {
        width: 100%;
    }
} */