.content-part10 {
    width: 100%;
    height: auto;
    /* border: 2px solid red; */
    padding-block: var(--main-block-padding);
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: rgb(243, 243, 243);
}



.content-part10-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.content-part10-top > span:first-child {
    font-size: 1.1rem;
}

.content-part10-top > span:nth-child(2) {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.coupon-box {
    display: flex;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.coupon-box > input {
    width: 400px;
    height: 46px;
    outline: none;
    border: none;
    padding-left: 0.5rem;
}

.coupon-box > input::placeholder {
    color: black;
    
    font-size: 0.6rem;
}

.coupon-box > button {
    background-color: black;
    color: white;
    padding: 0 20px;
    font-size: 0.6rem;
}

.content-part10-bottom {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.content-part10-bottom-titles {
    display: flex;
    align-items: center;

}



.toggle-price-box {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

#toggle-price {
    display: none;
}

.toggle-price-box > label {
    width: 68px;
    height: 36px;
    background-color: rgb(255, 255, 255);
    border-radius: 100px;
    display: flex;
    align-items: center;
    padding: 0 6px;
    flex-shrink: 0;
    cursor: pointer;
}

.toggle-price-box > label::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-color: black;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}

#toggle-price:checked + .content-part10-bottom-titles label::after {
    transform: translateX(32px);
}

.toggle-price-box > span:last-child {
    text-wrap: nowrap;
    font-size: 0.6rem;
    padding: 4px 6px;
    border-radius: 4px;
    background: linear-gradient(45deg, rgba(50, 50, 199, 0.951), rgba(190, 52, 52, 0.944));
}

.content-part10-bottom-cards {
    display: flex;
    gap: 20px;
}

.content-part10-bottom-cards > div {
    width: 100%;
    height: auto;
    /* border: 2px solid blue; */
}

.part10-card {
    display: flex;
    padding: 40px;
    flex-direction: column;
    justify-content: space-between;
    background-color: white;
    border-radius: 10px;
    gap: 30px;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

.part10-card-title {
    white-space: pre-line;
    font-size: 1.6rem;
    font-weight: 600;
}

.part10-card-price {
    display: flex;
    flex-direction: column;
}

.part10-card-price-title > span:first-child {
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
}

.part10-card-price-info {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}


.part10-card-price-info > .save-tag{
    font-size: 0.6rem;
    color: white;
    padding: 2px 4px;
    background-color: black;
    border-radius: 2px;
}

.part10-card-price-title .dollor {
    font-size: 0.8rem;
    position: absolute;
    right: 0px;
    top: 10px;
}

.part10-card-button {
    width: 100%;
    height: 60px;
    border: 1px solid rgb(178, 178, 178);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 20px;
}

.part10-card-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.part10-card-list-item {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    align-items: center;
}

.part10-card-list-item > div:first-child {
    height: 20px;
    width: 20px;
    padding: 2px;
    border: 1px solid rgb(192, 192, 192);
    border-radius: 50%;
}

.part10-card:hover {
    background-color: black;
    color: white;
    transform: translateY(-10px);
}

.part10-card:hover .save-tag {
    background: linear-gradient(45deg, rgba(50, 50, 199, 0.951), rgba(190, 52, 52, 0.944));
    color: black;

}

.year-price {
    display: none;
}

.year-total-price {
    display: none;
}

#toggle-price:checked ~ .content-part10-bottom-cards .monthly-price {
    display: none;
}

#toggle-price:checked ~ .content-part10-bottom-cards .year-price {
    display: inline-block;
}

#toggle-price:checked ~ .content-part10-bottom-cards .monthly-total-price {
    display: none;
}

#toggle-price:checked ~ .content-part10-bottom-cards .year-total-price {
    display: inline-block;
}



