        /* Основные стили */
        .popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 350px;
            padding: 30px;
            background: linear-gradient(to right, #2ecc71, #50c878);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            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: #fff;
            cursor: pointer;
            background: none;
            border: none;
        }

        .form-content {
            color: #fff;
        }

        .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: 93%;
            padding: 12px;
            margin: 10px 0;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            background: #fff;
            color: #333;
        }

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

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

        .spam-protection {
            display: none;
        }

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

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

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

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

        /* Всплывающая Политика конфиденциальности */
        .privacy-popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 390px;
            padding: 30px;
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            z-index: 1100;
            animation: fadeIn 0.3s;
        }

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

        @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: 18px;
            }

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

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

            .privacy-popup p {
                font-size: 14px;
            }
        }
.form-image {
    background-image: url('/templates/100gruz/imgs/240x157.png');
/*    background-size: cover;  Растягивает изображение на всю область */
    background-position: center; /* Центрирует изображение */
    background-repeat: no-repeat; /* Отключает повторение изображения */
    width: 100%; /* Ширина элемента */
    height: 191px; /* Высота элемента */
	
}