*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background: #F7F7FE;
    text-align: center;
}

.pricing-container {
    max-width: 900px;
    margin: 50px auto;
}

h2 {
    font-size: 24px;
    color: #444;
}

.toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.switch {
    margin: 0 10px;
    position: relative;
    width: 40px;
    height: 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border-radius: 20px;
    cursor: pointer;
}

.slider:before {
    content: "";
    position: absolute;
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

input:checked + .slider {
    background-color: #A2A7F0;
}

input:checked + .slider:before {
    transform: translateX(20px);
}

.pricing-table {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.plan {
    background: white;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.featured {
    background-color: #696EDD;
    color: white;
    
}
.m{
    border-top:1px solid #77848e ;
    padding: 15px;
}

.plan h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

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

ul li {
    margin: 5px 0;
}

button {
    background: #6c5ce7;
    color:white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #8e44ad;
}
