/* Previous CSS... keep everything and add: */

.fte-incentive-banner {
    background: linear-gradient(135deg, #0c71c3 0%, #0c71c3 100%);
    color: white;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 32px;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.fte-incentive-icon {
    font-size: 48px;
    flex-shrink: 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

#additional_feedback {
  width: 100%;
}

.fte-question {
  margin-bottom: 12px;
}

.fte-radio-group {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.fte-incentive-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}

.fte-incentive-content p {
    font-size: 16px;
    margin: 0;
    opacity: 0.95;
}

.fte-incentive-content strong {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
}

.fte-highlight-question {
    background: #F9FAFB;
    padding: 24px;
    border-radius: 8px;
    border: 2px dashed #4F46E5;
}

.fte-helper-text {
    font-size: 15px;
    color: #6b7280;
    margin: 8px 0;
}

.fte-helper-list {
    margin: 12px 0;
    padding-left: 20px;
    color: #6b7280;
    font-size: 14px;
}

.fte-helper-list li {
    margin-bottom: 6px;
}

.fte-char-counter {
    text-align: right;
    font-size: 13px;
    color: #9CA3AF;
    margin-top: 8px;
}

.fte-char-counter.fte-valid {
    color: #10B981;
    font-weight: 600;
}

.fte-required {
    color: #EF4444;
    font-weight: 600;
}

.fte-checkbox-label {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #F0FDF4;
    border: 2px solid #10B981;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
	margin-top: 10px;
}

.fte-checkbox-label:hover {
    background: #DCFCE7;
}

.fte-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    margin-top: 2px;
}

.fte-checkbox-label strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.fte-checkbox-label small {
    display: block;
    color: #6b7280;
    font-size: 13px;
}

.fte-btn-icon {
    font-size: 20px;
    margin-right: 8px;
}

.fte-privacy-note {
    text-align: center;
    font-size: 14px;
    color: #6b7280;
    margin-top: 16px;
}

.fte-error-message {
	font-size: 21px;
	color: red;
}

.fte-success-email {
    font-size: 16px;
    margin: 20px 0;
}

.fte-success-details {
    background: #F9FAFB;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
    text-align: left;
}

.fte-success-details h3 {
    font-size: 18px;
    margin: 0 0 16px;
    color: #1a1a1a;
}

.fte-success-details ol {
    margin: 0;
    padding-left: 24px;
}

.fte-success-details li {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 12px;
    line-height: 1.6;
}

.fte-success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 24px 0;
}

.fte-btn-primary,
.fte-btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.fte-submit-btn {
  color: #FFFFFF !important;
  border-color: #7CDA24 !important;
  border-radius: 50px !important;
  font-size: 20px !important;
  background-color: #7CDA24 !important;
}


.fte-btn-primary {
    background: #4F46E5;
    color: white;
}

.fte-btn-primary:hover {
    background: #4338CA;
    color: white;
}

.fte-btn-secondary {
    background: white;
    color: #4F46E5;
    border: 2px solid #4F46E5;
}

.fte-btn-secondary:hover {
    background: #F9FAFB;
}

.fte-feedback-thanks {
    font-size: 14px;
    color: #6b7280;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .fte-incentive-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .fte-incentive-content h3 {
        font-size: 20px;
    }
    
    .fte-success-actions {
        flex-direction: column;
    }
    
    .fte-btn-primary,
    .fte-btn-secondary {
        width: 100%;
    }
}