.pricing-1 {
    padding: 4rem 20px;
}

.pricing-1>h2 {
    text-align: center;
    margin-bottom: 10px;
}

.pricing-1>p {
    max-width: 1000px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 40px;
}


.pricing-1 .pricing-1-content {
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 40px;
}



/* Left SIDE */
.pricing-1 .content {}

.pricing-1 .service-section {
    display: none;
}

.pricing-1 .service-section.active {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.pricing-1 .card {
    background: #fffbf7;
    padding: 25px;
    border-radius: 15px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-1 .card h3 {
    font-size: 20px;
}

.pricing-1 .price {
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0;
}

.pricing-1 ul {
    padding-left: 10px;
    margin-bottom: 20px;
    list-style: square;
}

.pricing-1 .check-btn {
    background: #ffd900;
    background: linear-gradient(160deg, rgba(255, 217, 0, 1) 1%, rgba(255, 0, 0, 1) 99%);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.pricing-1 .check-btn:hover {
    opacity: 0.9;
}





/* Right SIDE */
.pricing-1 .sidebar {}

.pricing-1 .sidebar .toggle-btn {
    display: block;
    width: 100%;
    padding: 18px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: none;
    /* background: #f2f2f2; */
    cursor: pointer;
    font-size: 16px;
    text-align: left;
    font-weight: 600;
}

.pricing-1 .sidebar .toggle-btn.active {
    color: white;
    font-weight: 600;
    background: #ffd900;
    background: linear-gradient(160deg, rgba(255, 217, 0, 1) 1%, rgba(255, 0, 0, 1) 99%);
}



@media screen and (max-width:992px) {

    .pricing-1 .service-section.active {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width:768px) {

    .pricing-1 {
        padding: 2rem 20px;
    }


    .pricing-1 .content {
        order: 2;
    }

    .pricing-1 .sidebar {
        order: 1;
    }

    .pricing-1 .pricing-1-content {
        grid-template-columns: 1fr;
    }

    .pricing-1 .service-section.active {
        grid-template-columns: 1fr;
    }
}