.popup-container,
.popup-container2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s;
    text-align: center;
}

.popup-container.active,
.popup-container2.active {
    opacity: 1;
    visibility: visible
}

.popup-content,
.popup-content2 {
    background: #fff;
    width: 90%;
    max-width: 700px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
    transform: scale(.9);
    opacity: 0;
    transition: all .5s
}

.popup-container.active .popup-content,
.popup-container2.active .popup-content2 {
    transform: scale(1);
    opacity: 1
}

.popup-header,
.popup-header2 {
    padding: 30px;
    background: linear-gradient(135deg, #1a73e8, #0066d6);
    color: #fff;
    position: relative
}

.popup-header h2,
.popup-header2 h2 {
    font-size: 2.2rem;
    color: #fff;
    text-align: center
}

.popup-close,
.popup-close2 {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    transition: color .3s
}

.popup-close:hover {
    color: #ff5252
}

.popup-body {
    padding: 40px
}

.popup-content2 img {
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.popup-body p {
    margin-bottom: 25px;
    font-size: 1.2rem;
    text-align: center
}

.service-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0
}

.service-tags span {
    background: #f0f7ff;
    color: #1a73e8;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600
}

.advantages-list {
    max-width: 500px;
    margin: 0 auto
}

.advantages-list p {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    margin-bottom: 20px;
    font-size: 1.1rem
}

.advantages-list i {
    color: #4caf50;
    font-size: 1.4rem
}

.popFoot {
    display: flex;
    justify-content: center;
    /* gap: 20px; */
}

.popup-btn,
.popup-btn2,
.cancel-btn {
    width: 100%;
    padding: 18px;
    font-size: 1.2rem;
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all .3s;
    font-weight: 700;
    margin-top: 20px;
    border-radius: 0;
}

.popup-btn,
.popup-btn2 {
    background: linear-gradient(135deg, #1a73e8, #0066d6);
}

.cancel-btn {
    background: #ccc;
    color: #333;
}

.popFoot .cancel-btn {
    position: static;
    /* margin-top: 0; */
    padding: 0;
}

.popFoot .cancel-btn:hover {
    color: #333;
}

.popup-btn:hover {
    background: linear-gradient(135deg, #0066d6, #0050b3);
    transform: translateY(-3px)
}