.pricing-container {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.pricing-card {
    margin: 100px 0;
    width: 300px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.pricing-card p {
    line-height: 1.2;
    margin: 3px 0; /* Минимальные отступы сверху и снизу */
}
.kz {
    background-color: #ffe5cc;
    border: 2px solid #004a79;
}

.foreign {
    background-color: #fff;
    border: 2px solid #004a79;
}

.pricing-card h2 {
    margin-bottom: 15px;
    color: #333;
    font-size: 20px;
}

.pricing-card p {
    font-size: 16px;
    margin: 5px 0;
}

.pricing-card .check {
    color: green;
}

.pricing-card .cross {
    color: red;
}

.pricing-card .circle {
    color: #ff0000;
}

.pricing-card .btn {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.pricing-card .free {
    background-color: #ffae00;
    color: #fff;
}

.paid {
    background-color: #004a79;
    color: #fff;
}

.note {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}
.modal1 {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content1 {
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #104d7f;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}
.pricing-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    background-color: #ffae00;
}

.close1 {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 40px;
    cursor: pointer;
}
.modal-content1 video {
    max-width: 90%;
    margin: 0 auto;
}
.close2 {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}
.close3 {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}
.modal-bottom {
    margin: 20px 0;
    color: #ffffff;
    font-size: 20px;
}

@media (max-width: 600px) {
    .pricing-cards {
        display: block;
        padding: 10px 0;
    }
    .pricing-card {
        margin: 20px auto;
    }
    .modal-content1 {
        width: 95%;
        padding: 5px;
    }
    .close1, .close2, .close3 {
        right: 5px;
        top: -40px
    }
    video {
        max-width: 100% !important;
    }
    .modal-bottom {
        font-size: 15px;
    }
    .info {
        padding: 50px 0;
    }
}
