
     * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /*body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: #333;
        background: linear-gradient(135deg, #2e8b57, #228b22);
        min-height: 100vh;
        padding: 2rem 0;
    } */
     main{
        background-color: #F2F0EF;
     }

    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .form-title {
        background: linear-gradient(135deg, #2e8b57, #228b22);
        color: white;
        padding: 1.5rem;
        font-size: 1.5rem;
        font-weight: bold;
        text-align: center;
    }

    /* Form Container */
    .form-container {
        background: white;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        overflow: hidden;
    }

    .form-content {
        padding: 2.5rem;
    }

    /* Form Sections */
    .form-section {
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 2px solid #f0f0f0;
    }

    .form-section:last-child {
        border-bottom: none;
    }

    .section-header {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        padding: 1rem;
        background: linear-gradient(135deg, rgba(46, 139, 87, 0.1), rgba(34, 139, 34, 0.1));
        border-left: 4px solid #2e8b57;
        border-radius: 8px;
    }

    .section-header i {
        font-size: 1.5rem;
        color: #2e8b57;
    }

    .section-header h3 {
        color: #2e8b57;
        font-size: 1.3rem;
        margin: 0;
    }

    /* Form Fields */
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .form-row.single {
        grid-template-columns: 1fr;
    }

    .form-row.triple {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #333;
        font-size: 0.95rem;
    }

    .form-label.required::after {
        content: " *";
        color: #dc3545;
    }

    .form-control, .form-select, .form-textarea {
        width: 100%;
        padding: 0.9rem;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: white;
        font-family: inherit;
    }

    .form-control:focus, .form-select:focus, .form-textarea:focus {
        outline: none;
        border-color: #2e8b57;
        box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
    }

    .form-textarea {
        resize: vertical;
        min-height: 100px;
    }

    .form-textarea.large {
        min-height: 150px;
    }

    /* Checkbox Groups */
    .checkbox-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 10px;
    }

    .checkbox-item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        padding: 0.8rem;
        background: white;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .checkbox-item:hover {
        border-color: #2e8b57;
        box-shadow: 0 2px 8px rgba(46, 139, 87, 0.1);
    }

    .checkbox-item input[type="checkbox"] {
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .checkbox-item label {
        cursor: pointer;
        margin: 0;
        flex: 1;
    }

    /* Results Section */
    .results-grid {
        display: grid;
        gap: 1rem;
    }

    .result-item {
        display: flex;
        align-items: start;
        gap: 0.8rem;
    }

    .result-number {
        min-width: 35px;
        height: 35px;
        background: linear-gradient(135deg, #2e8b57, #228b22);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin-top: 0.5rem;
    }

    /* File Upload */
    .file-upload-area {
        border: 2px dashed #ccc;
        border-radius: 10px;
        padding: 2rem;
        text-align: center;
        background: #f8f9fa;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .file-upload-area:hover {
        border-color: #2e8b57;
        background: rgba(46, 139, 87, 0.05);
    }

    .file-upload-area i {
        font-size: 3rem;
        color: #2e8b57;
        margin-bottom: 1rem;
    }

    .file-input {
        display: none;
    }

    .file-list {
        margin-top: 1rem;
    }

    .file-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem;
        background: white;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        margin-bottom: 0.5rem;
    }

    .file-item-info {
        display: flex;
        align-items: center;
        gap: 0.8rem;
    }

    .remove-file {
        background: #dc3545;
        color: white;
        border: none;
        padding: 0.4rem 0.8rem;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .remove-file:hover {
        background: #c82333;
    }

    /* Help Text */
    .help-text {
        font-size: 0.85rem;
        color: #6c757d;
        margin-top: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .help-text i {
        color: #2e8b57;
    }

    /* Buttons */
    .form-actions {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: 2px solid #f0f0f0;
    }

    .btn {
        padding: 1rem 2.5rem;
        border: none;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        text-decoration: none;
    }

    .btn-primary {
        background: linear-gradient(135deg, #2e8b57, #228b22);
        color: white;
        box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
    }

    .btn-secondary {
        background: #6c757d;
        color: white;
    }

    .btn-secondary:hover {
        background: #5a6268;
        transform: translateY(-2px);
    }

    .btn-outline {
        background: white;
        color: #2e8b57;
        border: 2px solid #2e8b57;
    }

    .btn-outline:hover {
        background: #2e8b57;
        color: white;
    }

    /* Progress Bar */
    .progress-container {
        background: white;
        padding: 1rem 2rem;
        margin-bottom: 1rem;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .progress-bar {
        height: 8px;
        background: #e9ecef;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 0.5rem;
    }

    .progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #2e8b57, #228b22);
        width: 0%;
        transition: width 0.3s ease;
    }

    .progress-text {
        text-align: center;
        font-size: 0.9rem;
        color: #666;
    }

    /* Responsive */
    @media (max-width: 768px) {
        body {
            padding: 1rem 0;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .form-row.triple {
            grid-template-columns: 1fr;
        }

        .form-actions {
            flex-direction: column;
        }

        .btn {
            width: 100%;
            justify-content: center;
        }

        .header-title h1 {
            font-size: 1.5rem;
        }

        .fie-logo {
            width: 60px;
            height: 60px;
            font-size: 1rem;
        }
    }

    /* Success Modal */
    .success-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.8);
        z-index: 9999;
        align-items: center;
        justify-content: center;
    }

    .success-modal.show {
        display: flex;
    }

    .success-content {
        background: white;
        padding: 3rem;
        border-radius: 20px;
        text-align: center;
        max-width: 500px;
        animation: slideUp 0.4s ease;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .success-icon {
        font-size: 5rem;
        color: #2e8b57;
        margin-bottom: 1rem;
    }

    .success-content h2 {
        color: #2e8b57;
        margin-bottom: 1rem;
    }

    .reference-number {
        background: #f8f9fa;
        padding: 1rem;
        border-radius: 10px;
        margin: 1rem 0;
        font-weight: bold;
        color: #2e8b57;
    }