.pricing-section {
    padding: 60px 0;
}

.pricing-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.price-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 400px;
    width: 300px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.price-card .price {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-card .price small {
    font-size: 16px;
    font-weight: normal;
}

.price-card .no-price {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-card .no-price small {
    font-size: 16px;
    font-weight: normal;
}

.price-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 20px 0;
}

.price-card ul li {
    margin-bottom: 10px;
}

.price-card button,
.price-card .github-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    margin-top: 10px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.price-card .github-button:hover,
.price-card button:hover {
    background-color: #0468d4;
}





.billing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 18px;
}

.toggle-label {
    font-weight: 500;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider::before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #007bff;
}

input:checked + .slider::before {
    transform: translateX(24px);
}
