
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       body {
    font-family:  'Adobe Clean', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #2e3192 0%, #ed1c24 100%);
    min-height: 100vh;
    padding: 20px;
}


        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }






        .header {
            background: linear-gradient(135deg, #2e3192, #ed1c24);
            color: white;
            padding: 20px 30px;
            text-align: center;
        }

        .header h1 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .header p {
            opacity: 0.9;
            font-size: 16px;
        }

        .form-content {
            padding: 40px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }

        .form-row .form-group {
            flex: 1;
            margin-bottom: 0;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }

        .required {
            color: #e74c3c;
        }

        input[type="text"], input[type="date"], textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        input[type="text"]:focus, input[type="date"]:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #3498db;
            background: white;
            box-shadow: 0 0 10px rgba(52, 152, 219, 0.1);
        }

        textarea {
            resize: vertical;
            min-height: 100px;
        }

        .checkbox-group, .radio-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 10px;
        }

        .checkbox-item, .radio-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #fafafa;
            min-width: 120px;
        }

        .checkbox-item:hover, .radio-item:hover {
            border-color: #3498db;
            background: #f0f8ff;
        }

        .checkbox-item input, .radio-item input {
            width: auto;
            margin: 0;
        }

        .checkbox-item input:checked + label,
        .radio-item input:checked + label {
            color: #3498db;
            font-weight: 600;
        }

        .checkbox-item:has(input:checked),
        .radio-item:has(input:checked) {
            border-color: #3498db;
            background: #f0f8ff;
        }

        .rating-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 10px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        .rating-table th {
            background: #34495e;
            color: white;
            padding: 15px 10px;
            text-align: center;
            font-weight: 600;
        }

        .rating-table td {
            padding: 15px 10px;
            text-align: center;
            border-bottom: 1px solid #ecf0f1;
            color: #2c3e50;
        }

        .rating-table tr:last-child td {
            border-bottom: none;
        }

        .rating-table tbody tr:hover {
            background: #f8f9fa;
        }

        .rating-table input[type="radio"] {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .nps-scale {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 20px 0;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 10px;
        }

        .nps-numbers {
            display: flex;
            gap: 5px;
        }

        .nps-numbers input[type="radio"] {
            width: 40px;
            height: 40px;
            appearance: none;
            border: 2px solid #bdc3c7;
            border-radius: 50%;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }

        .nps-numbers input[type="radio"]:hover {
            border-color: #3498db;
            transform: scale(1.1);
        }

        .nps-numbers input[type="radio"]:checked {
            background: #3498db;
            border-color: #3498db;
        }

        .nps-numbers input[type="radio"]::after {
            content: attr(data-value);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-weight: bold;
            color: #2c3e50;
        }

        .nps-numbers input[type="radio"]:checked::after {
            color: white;
        }

        .nps-labels {
            display: flex;
            justify-content: space-between;
            width: 100%;
            margin-top: 10px;
            font-size: 12px;
            color: #7f8c8d;
        }

        .submit-section {
            background: #f8f9fa;
            padding: 30px 40px;
            border-top: 2px solid #ecf0f1;
        }

        .submit-btn {
            background: linear-gradient(135deg, #2e3151, #2e3192);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
            background: linear-gradient(135deg, #2e3192, #e74c3c);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .section-title {
            font-size: 18px;
            color: #2c3e50;
            margin: 30px 0 15px 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #ecf0f1;
        }

        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
                gap: 0;
            }

            .checkbox-group, .radio-group {
                flex-direction: column;
            }

            .nps-scale {
                flex-direction: column;
                gap: 15px;
            }

            .rating-table {
                font-size: 14px;
            }

            .rating-table th,
            .rating-table td {
                padding: 10px 5px;
            }
        }








         .demo-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            max-width: 600px;
        }

        .demo-card h1 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 2.5rem;
        }

        .demo-card p {
            color: #7f8c8d;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #101111 0%, #1a1a1a 100%);
            color: #ffffff;
            padding: 40px 0 20px;
            margin-top: auto;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #007bff, transparent);
        }

      

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 25px;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 10px;
        }

        .footer-link {
            color: #007bff;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            padding: 8px 16px;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
            background: rgba(0, 123, 255, 0.1);
            border: 1px solid rgba(0, 123, 255, 0.2);
        }

        .footer-link:hover {
            color: #ffffff;
            background: rgba(0, 123, 255, 0.8);
            border-color: #007bff;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
        }

        .footer-divider {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, #007bff, #00d4ff);
            border-radius: 1px;
            margin: 10px 0;
        }

        .footer-company {
            text-align: center;
        }

        .company-name {
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 5px;
            letter-spacing: 0.5px;
        }

        .copyright-text {
            color: #9ca3af;
            font-size: 13px;
            margin: 0;
            opacity: 0.8;
        }

        .footer-decoration {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #007bff 0%, #00d4ff 50%, #007bff 100%);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .footer {
                padding: 30px 0 15px;
            }

            .footer-links {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

            .footer-link {
                font-size: 13px;
                padding: 6px 12px;
            }

            .company-name {
                font-size: 16px;
            }

            .copyright-text {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .footer-content {
                gap: 20px;
            }
        }

        /* Animation for footer elements */
        .footer-link {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .footer-link:nth-child(1) { animation-delay: 0.1s; }
        .footer-link:nth-child(2) { animation-delay: 0.2s; }
        .footer-link:nth-child(3) { animation-delay: 0.3s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



        