 .feedback-card {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 350px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            font-family: 'Arial', sans-serif;
            text-align: center;
            border: 1px solid #c3cfe2;
            animation: fadeIn-alert 0.5s ease-out;
        }
        
        .feedback-card h3 {
            margin: 0 0 15px;
            color: #2c3e50;
            font-size: clamp(18px, 5vw, 22px);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .feedback-card p {
            color: #34495e;
            margin-bottom: 20px;
            line-height: 1.5;
            font-size: clamp(14px, 3.5vw, 16px);
        }
        .contact-btn-alert a{
            min-width: 100px;
            max-height: 40px;
            list-style: none;
            color: #cbc0c0;
            background-color: #2885c7;
            padding: 10px 10px 10px 10px;
            font-size: 1.2em;
            
        }
        
    .contact-btn-alert{
        border: none;
    }
        
        .hashtags {
            color: #7f8c8d;
            font-size: clamp(12px, 3vw, 14px);
            margin: 10px 0;
        }
        
        .social-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .social-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #ecf0f1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .social-btn:hover {
            transform: scale(1.3);
        }
        
        .social-btn img {
            width: 20px;
            height: 20px;
        }
        
        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            min-width: 20px;
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            color: #7f8c8d;
        }
        
        @keyframes fadeIn-alert {
            from { opacity: 0; transform: translate(-50%, -60%); }
            to { opacity: 1; transform: translate(-50%, -50%); }
        }

        @media (max-width: 400px) {
            .feedback-card {
                padding: 15px;
            }
            .social-btn {
                width: 35px;
                height: 35px;
            }
            .social-btn img {
                width: 18px;
                height: 18px;
            }
        }