/* Help & Support Section */
.help {
    text-align: center;
    padding: 30px;
    background: #f8f8f8;
    margin-top: 20px;
    border-radius: 10px;
    animation: fadeIn 1s ease-in-out;
}

.help h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff5722;
}

/* Help Form */
.help-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: slideUp 1s ease-in-out;
}

/* Form Labels */
.help-form label {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0 5px;
    color: #333;
    align-self: flex-start;
}

/* Form Inputs */
.help-form input,
.help-form select,
.help-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

/* Input Hover & Focus Effects */
.help-form input:focus,
.help-form select:focus,
.help-form textarea:focus {
    border-color: #ff5722;
    box-shadow: 0 0 5px rgba(255, 87, 34, 0.5);
    outline: none;
}

/* Textarea Styling */
.help-form textarea {
    resize: none;
    height: 100px;
}

/* Submit Button */
.help-form button {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background: #ff5722;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

.help-form button:hover {
    background: #e64a19;
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .help-form {
        width: 90%;
    }
}
