* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f4f4f4;
            color: #000000;
            line-height: 1.6;
            
        }

        .application-container {
            max-width: 800px;
            margin: 0 auto;
            margin-top: 1rem;
            margin-bottom: 3rem;
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .app-header {
            background-color: #060c15;
            color: #fff;
            padding: 30px 40px;
        }

        .app-header h1 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .app-header p {
            font-size: 15px;
            color: #d3d3df;
            font-weight: 500;
        }

        .progress-container {
            background-color: #fff;
            padding: 30px 40px;
            border-bottom: 1px solid #f4f4f4;
        }

        .progress-steps {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
        }

        .progress-line {
            position: absolute;
            top: 20px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #f4f4f4;
            z-index: 0;
        }

        .progress-line-fill {
            height: 100%;
            background-color: #0091ff;
            transition: width 0.3s ease;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 1;
            flex: 1;
        }

        .step-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #fff;
            border: 2px solid #f4f4f4;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 14px;
            color: #000000;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }

        .step.active .step-circle {
            background-color: #0091ff;
            border-color: #0091ff;
            color: #fff;
        }

        .step.completed .step-circle {
            background-color: #062733;
            border-color: #062733;
            color: #fff;
        }

        .step-label {
            font-size: 14px;
            font-weight: 600;
            color: #000000;
            text-align: center;
        }

        .step.active .step-label {
            opacity: 1;
            color: #0091ff;
        }

        .step.completed .step-label {
            opacity: 0.8;
        }

        .content-area {
            padding: 40px;
            min-height: 400px;
        }

        .step-content {
            display: none;
        }

        .step-content.active {
            display: block;
            animation: fadeIn 0.3s ease;
        }

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


        .content-title {
            font-size: 24px;
            font-weight: 600;
            color: #062733;
            margin-bottom: 20px;
        }

        .job-details {
            line-height: 1.8;
        }

        .job-section {
            margin-bottom: 28px;
        }

        .job-section h3 {
            font-size: 16px;
            font-weight: 600;
            color: #062733;
            margin-bottom: 12px;
        }

        .job-section p {
            font-size: 15px;
            color: #000000;
            margin-bottom: 10px;
        }

        .job-section ul {
            list-style: none;
            padding-left: 0;
        }

        .job-section li {
            font-size: 15px;
            color: #000000;
            padding-left: 30px;
            position: relative;
            margin-bottom: 8px;
        }

        .job-section li:before {
            content: "✓";
            color: #0091ff;
            font-weight: bold;
            position: absolute;
            left: 8px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #062733;
            margin-bottom: 8px;
        }

        .required {
            color: #0091ff;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 12px 16px;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            border: 2px solid #e7e7e7;
            border-radius: 6px;
            background-color: #fff;
            color: #000000;
            transition: border-color 0.3s ease;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #0091ff;
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .file-upload-wrapper {
            position: relative;
        }

        .file-upload-input {
            width: 100%;
            padding: 12px 16px;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            border: 2px dashed #cecece;
            border-radius: 6px;
            background-color: #fff;
            color: #000000;
            cursor: pointer;
        }

        .file-upload-input::file-selector-button {
            padding: 8px 16px;
            background-color: #062733;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 500;
            margin-right: 12px;
        }

        .terms-content {
            max-height: 400px;
            overflow-y: auto;
            padding: 24px;
            background-color: #f4f4f4;
            border-radius: 0;
            margin-bottom: 24px;
        }

        .terms-content h4 {
            font-size: 16px;
            font-weight: 600;
            color: #062733;
            margin-bottom: 12px;
            margin-top: 20px;
        }

        .terms-content h4:first-child {
            margin-top: 0;
        }

        .terms-content p {
            font-size: 14px;
            color: #000000;
            margin-bottom: 12px;
            line-height: 1.7;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 20px;
        }

        .checkbox-input {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            cursor: pointer;
            accent-color: #0091ff;
        }

        .checkbox-label {
            font-size: 14px;
            color: #000000;
            line-height: 1.6;
            flex: 1;
        }

        .button-group {
            display: flex;
            justify-content: space-between;
            gap: 16px;
            margin-top: 32px;
        }

        .btn {
            padding: 14px 28px;
            font-size: 15px;
            font-weight: 500;
            font-family: 'Inter', sans-serif;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: #0091ff;
            color: #fff;
        }

        .btn-primary:hover {
            background-color: #0077cc;
        }

        .btn-primary:disabled {
            background-color: #f4f4f4;
            color: #000000;
            opacity: 0.5;
            cursor: not-allowed;
        }

        .btn-secondary {
            background-color: #fff;
            color: #062733;
            border: 2px solid #dddddd;
        }

        .btn-secondary:hover {
            background-color: #f4f4f4;
        }

        .success-message {
            text-align: center;
            padding: 40px 20px;
        }

        .success-icon {
            width: 80px;
            height: 80px;
            background-color: #0091ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }

        .success-icon svg {
            width: 40px;
            height: 40px;
            fill: #fff;
        }

        .success-message h2 {
            font-size: 24px;
            font-weight: 600;
            color: #062733;
            margin-bottom: 12px;
        }

        .success-message p {
            font-size: 15px;
            color: #000000;
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .app-header {
                padding: 24px 20px;
            }

            .app-header h1 {
                font-size: 24px;
            }

            .progress-container {
                padding: 20px;
            }

            .step-label {
                font-size: 11px;
            }

            .step-circle {
                width: 36px;
                height: 36px;
                font-size: 13px;
            }

            .content-area {
                padding: 24px 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .button-group {
                flex-direction: column-reverse;
            }

            .btn {
                width: 100%;
            }
        }