* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8fafc;
            color: #1e2a3e;
            line-height: 1.5;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        .page-header {
            background: linear-gradient(135deg, #0a2b3e 0%, #1e4a6b 100%);
            color: white;
            padding: 80px 0 60px;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 16px;
        }

        .page-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Back to Home Link */
        .back-link {
            display: inline-block;
            margin: 24px 0;
            color: #c47b2e;
            text-decoration: none;
            font-weight: 500;
        }

        .back-link:hover {
            text-decoration: underline;
        }

        /* Career Form Section */
        .career-section {
            padding: 60px 0 80px;
        }

        .form-card {
            background: white;
            border-radius: 28px;
            padding: 48px;
            box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
            border: 1px solid #eef2f8;
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-header h2 {
            font-size: 1.8rem;
            color: #0a2b3e;
            margin-bottom: 12px;
        }

        .form-header p {
            color: #6c7a89;
        }

        .form-notice {
            background: #fff8e7;
            border-left: 4px solid #c47b2e;
            padding: 16px 20px;
            border-radius: 12px;
            margin-bottom: 32px;
            font-size: 0.9rem;
            color: #8b6b3d;
        }

        .form-notice i {
            margin-right: 10px;
            color: #c47b2e;
        }

        .form-group {
            margin-bottom: 24px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #1e2a3e;
        }

        .required {
            color: #c47b2e;
        }

        input, select, textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            font-family: inherit;
            font-size: 1rem;
            transition: 0.2s;
        }

        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #c47b2e;
            box-shadow: 0 0 0 3px rgba(196,123,46,0.1);
        }

        /* File Upload Area */
        .file-upload-area {
            border: 2px dashed #e2e8f0;
            border-radius: 20px;
            padding: 32px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
            background: #fafcff;
        }

        .file-upload-area:hover {
            border-color: #c47b2e;
            background: #fefaf5;
        }

        .file-upload-area i {
            font-size: 3rem;
            color: #c47b2e;
            margin-bottom: 12px;
        }

        .file-upload-area p {
            color: #6c7a89;
        }

        .file-upload-area .small {
            font-size: 0.75rem;
            margin-top: 8px;
        }

        .file-list {
            margin-top: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .file-tag {
            background: #f0f4f9;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .file-tag i {
            cursor: pointer;
            color: #c47b2e;
            font-size: 0.8rem;
        }

        .btn-submit {
            width: 100%;
            background: #c47b2e;
            color: white;
            padding: 16px;
            border: none;
            border-radius: 40px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 16px;
        }

        .btn-submit:hover {
            background: #a5631f;
            transform: translateY(-2px);
        }

        .form-message {
            margin-top: 20px;
            padding: 14px;
            border-radius: 16px;
            display: none;
            text-align: center;
        }

        .form-message.success {
            background: #e6f7e6;
            color: #2e7d32;
            display: block;
        }

        .form-message.error {
            background: #fee;
            color: #c62828;
            display: block;
        }

        /* Footer */
        footer {
            background: #0a2b3e;
            color: #cddfea;
            padding: 40px 0;
            text-align: center;
        }

        footer a {
            color: #c47b2e;
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .page-header {
                padding: 60px 0 40px;
            }
            .page-header h1 {
                font-size: 2rem;
            }
            .form-card {
                padding: 28px;
            }
        }