        .popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 350px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
    animation: fadeIn 0.3s;
        }

        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 999;
        }

        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 24px;
            color: #000;
            cursor: pointer;
            background: none;
            border: none;
        }
		
		.form-image {
			height: 64px;
			background-image: url('https://vyvozhlama24.ru/bitrix/templates/img/vh24-logo.png');
			background-size: cover;
			margin-bottom: 20px;
			margin-left: auto;
			margin-right: auto;
			width: 19em;
		}

        .form-content {
            color: #000;
        }

        .form-content img {
            width: 100%;
            border-radius: 10px;
            margin-bottom: 20px;
        }

.form-content input[type="text"],
.form-content input[type="tel"],
.form-content input[type="email"] {
    width: 94%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 22px;
    background: #fff;
    color: #333;
}

.form-content button {
    width: 100%;
    padding: 12px;
    background: #ffd800;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.form-content button:hover {
    background: #FF8C00;
}

        .spam-protection {
            display: none;
        }

.privacy-check {
    display: flex;
    align-items: center;
    margin: 15px 0 0;
	margin-bottom: 7px;
}

.privacy-check input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}

.privacy-text {
    font-size: 13px;
    color: #333;
}


.privacy-text a {
    color: #FFA500;
    text-decoration: underline;
    cursor: pointer;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.privacy-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1100;
    animation: fadeIn 0.3s;
}

.privacy-popup p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
.under {
text-decoration: underline;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@media (max-width: 600px) {
    .popup {
        width: 95%;
        padding: 20px;
    }

    .form-content input[type="text"],
    .form-content input[type="tel"],
    .form-content input[type="email"] {
        font-size: 22px;
    }

    .privacy-text {
        font-size: 12px;
    }

    .privacy-popup {
        width: 95%;
        padding: 20px;
    }

    .privacy-popup p {
        font-size: 14px;
    }
}